Book Image

Lift Application Development Cookbook

By : Gilberto Tadeu Garcia Jun
Book Image

Lift Application Development Cookbook

By: Gilberto Tadeu Garcia Jun

Overview of this book

Developing secure web applications is one of the most important tasks developers have to deal with. With Lift, it is easy to create solid and formidable web applications as it is the most secure web framework available today. The View-First approach and being able to handle things as purely data transformation, makes working with Lift an exciting task. "Lift Application Development Cookbook" teaches you how to build web applications using this amazing framework. The book moves gradually, starting with the basics (starting a new project, submitting a form, and so on) before covering more advanced topics such as building a REST API and integrating your application with other technologies and applications. "Lift Application Development Cookbook" takes you on a journey of creating secure web applications. Step-by-step instructions help you understand how things work and how various elements relate to each other. You'll learn different ways to process a form, build dynamic HTML pages, and create an API using REST. You'll also learn how to work with relational and NoSQL databases and how to integrate your application with other technologies as well as with third-part applications such as Gmail and Facebook. By the end of the book, you will be able to understand how Lift works and be able to build web applications using this amazing and exciting framework.
Table of Contents (15 chapters)
Lift Application Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Introduction


In the previous chapter, we learned how to store data in a database and how to work with this stored data. However, Mapper is not the only persistent layer available in Lift. In fact, there is another one, named Record.

In this chapter, we will learn how to use Record to integrate Lift with Squeryl, which is an ORM and DSL (Domain-specific language), for Scala. Unlike other ORM frameworks that provide a string-based query language, such as JPA-QL and HQL (to mention a few), Squeryl gives us a powerful DSL that we can use to create type-safe access to the database. This means that if you have used any string based query language, when changes to the database are made, you will probably have to deal with runtime errors because the application compiles just fine. But, if you access the database using a DSL that can be checked at compilation time, this means that any changes made to the database and to your models will make your project stop compiling.

While Mappers is a complete...