- A message
- Another message
- A third message
Simply Lift David Pollak September 8, 2011 ii Copyright © 2010-2011 by David Pollak This document is licensed Creative Commons Attribution, Non Commercial, No Derivatives: http://creativecommons.org/licenses/by-nc-nd/3.0/ iii v vii 1 3 5 5 6 7 8 9 Contents Contents List of Figures List of Listings I The Lift Web Framework 1 Introduction 2 The ubiquitous Chat app 2.1 The View . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2.2 The Chat Comet component . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2.3 The ChatServer . 2.4 User Input 2.5 Chat In . . 2.6 Running it . . . . . . . . . . . . . . . . . . . 2.7 What you don’t see . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 3 Snippets and SiteMap 11 3.1 Starting at the beginning: Boot.scala . . . . . . . . . . . . . . . . . . . . . . . . . . 11 3.1.1 LiftRules rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 3.1.2 Properties and Run modes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 3.1.3 By convention . 3.1.4 Misc Rules . 3.1.5 Html5 . 3.2 SiteMap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.2.1 Defining the SiteMap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 iii iv CONTENTS 3.2.2 Simplest SiteMap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.2.3 Menu and Loc[_] . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.2.4 Access Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.2.5 Hidden and Group . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.2.6 Submenus . 3.2.7 Parameters . 3.2.8 Wildcards . 3.2.9 Summary . 3.3 View First . . . . . . . . . . 3.3.1 Page source . . . . . . . . . . . . . 3.3.2 Dynamic content . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 3.3.3 Surround and page chrome . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 3.3.4 Embed . 3.3.5 Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.4 Snippets and Dynamic content . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.4.1 Snippets in markup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.4.2 Snippet resolution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 3.4.3 Dynamic Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 3.4.4 Embedded Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 3.4.5 Param Example . 3.4.6 Recursive . 3.4.7 Summary . 3.5 Wrap up . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 4 Forms 27 4.1 Old Fashioned Dumb Forms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.2 OnSubmit . . . . 4.3 Stateful Snippets 4.4 RequestVars . 4.5 Field Errors . . 4.6 LiftScreen . 4.7 Wizard . 4.8 Ajax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 4.9 But sometimes Old Fashioned is good . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 4.10 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 CONTENTS 5 HTTP and REST v 43 5.1 Introduction . . . . . 5.2 REST the hard way . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 5.3 Making it easier with RestHelper . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 5.4 A complete REST example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57 5.5 Wrap Up . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 6 Wiring 63 6.1 Cells . . . . . . . . . . . . 6.2 Hooking it up to the UI . 6.3 Shared Shopping . 6.4 Wrap up . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 7 Core Concepts 77 7.1 Snippets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 7.1.1 Snippet NodeSeq => NodeSeq . . . . . . . . . . . . . . . . . . . . . . . . . . 78 7.1.2 Snippet instances . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 7.1.3 Multiple methods on a snippet class . . . . . . . . . . . . . . . . . . . . . . . . 79 7.1.4 Inter-snippet communication . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 7.1.5 Recursive Snippets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 7.1.6 Snippet parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 7.2 Box/Option . 7.3 S/SHtml 7.4 Boot . . . 7.5 SiteMap . 7.6 GUIDs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.6.1 How GUIDs are generated . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.6.2 Where they are used . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.7 LiftRules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.8 SessionVars and RequestVars . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.9 Helpers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.10 CSS Selector Transforms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 7.11 Client-side behavior invoking server-side functions . . . . . . . . . . . . . . . . . . . 89 7.12 Ajax . . 7.13 Comet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 vi CONTENTS 7.14 LiftActor . . . . . . 7.15 Pattern Matching . 7.16 Type safety . . . 7.17 Page rewriting . 7.18 Security . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 8 Common Patterns 91 8.1 Localization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 8.1.1 Localizing Templates . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 8.1.2 Resource Lookup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 8.1.3 Accessing Resources . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93 8.1.4 Conclusion . . 8.2 Dependency Injection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94 8.2.1 Lift Libraries and Injector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94 8.2.2 Lift WebKit and enhanced injection scoping . . . . . . . . . . . . . . . . . . . 95 8.2.3 Conclusion . 8.3 Modules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 8.4 HtmlProperties, XHTML and HTML5 . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 8.4.1 XHTML via OldHtmlProperties . . . . . . . . . . . . . . . . . . . . . . . . 98 8.4.2 HTML5 via Html5Properties . . . . . . . . . . . . . . . . . . . . . . . . . . 98 8.4.3 Changing behavior mid-session or mid-request . . . . . . . . . . . . . . . . . 99 9 Built-in Snippets 101 9.1 CSS . 9.2 Msgs 9.3 Msg . . . . 9.4 Menu . 9.5 A . . . . . . . . . . . . . 9.6 Children . 9.7 Comet . 9.8 Form . 9.9 Ignore . 9.10 Loc . . . . . . . . . . 9.11 Surround . 9.12 TestCond . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 CONTENTS vii 9.13 Embed . 9.14 Tail . . . . . . . 9.15 WithParam . 9.16 VersionInfo . . . . . 9.17 SkipDocType . 9.18 XmlGroup . 9.19 LazyLoad . . . . . . . . . . . . . . . . . . 9.20 WithResourceId . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 10 SiteMap 11 REST 12 MVC (If you really want it) 13 From MVC 103 105 109 111 13.1 First things first . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111 13.2 Making a SiteMap entry . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112 13.3 Creating the view . . 13.4 Creating the Snippet 13.5 Getting Ajaxy . 13.6 Next Steps . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 114 II Recipes 14 Dynamic html tables created from DB.runQuery() 115 117 14.1 Problem . 14.2 Solution . . . . . . . . . . . . . . . . . . . 15 Dynamically choosing content 15.1 Problem . 15.2 Solution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 119 16 Ajax Forms 17 Protecting REST APIs 121 123 17.1 Problem . 17.2 Solution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123 viii 18 URI-based locale selection 18.1 Problem . 18.2 Solution . . . . . . . . . . . . . . . . . . . CONTENTS 125 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125 19 Embedding JavaScript in an HTML page 127 19.1 Problem . 19.2 Solution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127 III Questions and Answers 20 Scaling 21 How Lift does function/GUID mapping 22 How Lift does Comet 23 Advanced Concepts 129 131 137 139 141 23.1 Snippet Resolution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141 23.1.1 LiftSession.liftTagProcessing . . . . . . . . . . . . . . . . . . . . . . 142 23.1.2 LiftRules.liftTagProcessing . . . . . . . . . . . . . . . . . . . . . . . . 142 23.1.3 Snippet name resolution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142 23.1.4 Post-processing of results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144 23.2 The Merging Phase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144 IV Misc 24 Releases 145 147 24.1 Lift 2.2-RC1 . 24.2 Lift 2.2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 148 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150 List of Figures ix x LIST OF FIGURES List of Listings 2.1 index.html . 2.2 Chat.scala . . . . . . . 2.3 ChatServer.scala . 2.4 ChatIn.scala . 3.1 Boot.scala . 3.2 index.html . . . . 3.3 dynamic.html . . . . . . . . . . . . . . . 3.4 HelloWorld.scala . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 6 7 9 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 samples/snippet_and_sitemap/src/main/webapp/_embedme.html . . . . . . . . . . . . 22 3.5 Embedded.scala . 3.6 param.html . 3.7 Param.scala . 3.8 recurse.html . 3.9 Recurse.scala . 4.1 dumb.html . . . . . . . . . . . . . . . . . . 4.2 DumbForm.scala . 4.3 onsubmit.html . . 4.4 OnSubmit.scala . 4.5 4.6 4.7 stateful.html . Stateful.scala . . . requestvar.html 4.8 ReqVar.scala . . 4.9 fielderror.html . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 4.10 FieldErrorExample.scala . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 4.11 screen.html . . . . . . . 4.12 ScreenExample.scala . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 xi xii LIST OF LISTINGS 4.13 WizardExample.scala . 4.14 ajax.html . . . . . . . 4.15 AjaxExample.scala . 4.16 Query.scala . . . . . . 5.1 BasicExample.scala . 5.2 Item.scala . . . . . . . . . . . . . . . . . . 5.3 BasicWithHelper.scala . 5.4 FullRest.scala . 6.1 Cart.scala . . . . . . . . . . 6.2 AllItemsPage.scala . 6.3 items.html . . . . . 6.4 AnItemPage.scala . 6.5 CometCart.scala . 6.6 Link.scala . . . . . 6.7 ShareCart.scala . 13.1 index.html . . . . 13.2 TimeNow.scala . 13.3 ClickMe.scala . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 Part I The Lift Web Framework 1 Chapter 1 Introduction The Lift Web Framework provides web application developers tools to make writing security, in- teracting, scalable web applications easier than with any other web framework. After reading Part I of this book, you should understand Lift’s core concepts and be able to write Lift applications. But with anything, practice is important. I have been writing Lift and Scala for 4 years, and even I learn new things about the language and the framework on a weekly basis. Please consider Lift an path and an exploration, rather than an end point. “Yo, David, stop yer yappin’. I’m coming from Rails|Spring|Struts|Django and I want to get started super fast with Lift.” See From MVC ( 13 on page 111). Lift is built on top of the Scala programming language. Scala runs on the Java Virtual Machine. Lift applications are typically packaged as WAR files and run as a J/EE Servlets or Servlet Filters. This book will provide you with the core concepts you need to successfully write Lift web applications. The book assumes knowledge of Servlets and Servlet containers, the Scala Language (Chapters 1-6 of Beginning Scala gives you a good grounding in the language), build tools, program editors, web development including HTML and JavaScript, etc. Further, this book will not explore persistence. Lift has additional modules for persisting to relational and non-relational data stores. Lift doesn’t distinguish as to how an object is materialized into the address space... Lift can treat any object any old way you want. There are many resources (including Exploring Lift) that cover ways to persist data from a JVM. Lift is different from most web frameworks and it’s likely that Lift’s differences will present a challenge and a friction if you are familiar with the MVC school of web frameworks1. But Lift is different and Lift’s differences give you more power to create interactive applications. Lift’s differences lead to more concise web applications. Lift’s differences result in more secure and scalable applications. Lift’s differences let you be more productive and make maintaining appli- cations easier for the future you or whoever is writing your applications. Please relax and work to understand Lift’s differences... and see how you can make best use of Lift’s features to build your web applications. Lift creates abstractions that allow easier expression of business logic and then maps those ab- stractions to HTTP and HTML. This approach differs from traditional web frameworks which build abstractions on top of HTTP and HTML and require the developer to bridge between com- mon business logic patterns and the underlying protocol. The difference means that you spend more time thinking about your application and less time thinking about the plumbing. 1This includes Ruby on Rails, Struts, Java Server Faces, Django, TurboGears, etc. 3 4 CHAPTER 1. INTRODUCTION I am a “concept learner.” I learn concepts and then apply them over and over again as situations come up. This book focuses a lot on the concepts. If you’re a concept learner and like my stream on conciousness style, this book will likely suit you well. On the other hand, it may not. Up to date versions of liftweb.net/Simply_Lift.pdf. https://github.com/dpp/simply_lift. this book are available in PDF form at http://simply. this book is available at The source code for If you’ve got questions, feedback, or improvements to this document, please join the conversation on the Lift Google Group. I’m a “roll up your sleaves and get your hands dirty with code” kinda guy... so let’s build a simple Chat application in Lift. This application will allow us to demonstrate some of Lift’s core features as well as giving a “smack in the face” demonstration of how Lift is different. Chapter 2 The ubiquitous Chat app Writing a multi-user chat application in Lift is super-simple and illustrates many of Lift’s core concepts. The Source Code can be found at https://github.com/dpp/simply_lift/tree/master/chat. 2.1 The View When writing a Lift app, it’s often best to start off with the user interface... build what the user will see and then add behavior to the HTML page. So, let’s look at the Lift template that will make up our chat application. 1 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Listing 2.1: index.html 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23