Free Ebook Play Framework Essentials, by Julien Richard-Foy
Even we discuss guides Play Framework Essentials, By Julien Richard-Foy; you might not discover the published books right here. Many collections are offered in soft file. It will exactly offer you much more advantages. Why? The very first is that you could not need to lug guide everywhere by fulfilling the bag with this Play Framework Essentials, By Julien Richard-Foy It is for guide is in soft data, so you could save it in device. Then, you can open up the gizmo anywhere and review guide properly. Those are some few advantages that can be obtained. So, take all advantages of getting this soft data book Play Framework Essentials, By Julien Richard-Foy in this site by downloading in link supplied.
Play Framework Essentials, by Julien Richard-Foy
Free Ebook Play Framework Essentials, by Julien Richard-Foy
Reading a publication Play Framework Essentials, By Julien Richard-Foy is kind of very easy task to do whenever you want. Even reading every time you really want, this task will certainly not interrupt your other tasks; many individuals frequently read guides Play Framework Essentials, By Julien Richard-Foy when they are having the leisure. What concerning you? Just what do you do when having the downtime? Don't you spend for useless things? This is why you need to get guide Play Framework Essentials, By Julien Richard-Foy and also aim to have reading behavior. Reading this e-book Play Framework Essentials, By Julien Richard-Foy will certainly not make you useless. It will certainly offer a lot more benefits.
To get rid of the problem, we now give you the modern technology to download the e-book Play Framework Essentials, By Julien Richard-Foy not in a thick printed file. Yeah, reviewing Play Framework Essentials, By Julien Richard-Foy by on-line or getting the soft-file simply to review could be among the methods to do. You could not really feel that reading a book Play Framework Essentials, By Julien Richard-Foy will work for you. However, in some terms, May individuals successful are those who have reading practice, included this type of this Play Framework Essentials, By Julien Richard-Foy
By soft data of guide Play Framework Essentials, By Julien Richard-Foy to review, you could not have to bring the thick prints all over you go. At any time you have going to review Play Framework Essentials, By Julien Richard-Foy, you can open your kitchen appliance to read this e-book Play Framework Essentials, By Julien Richard-Foy in soft file system. So simple as well as fast! Checking out the soft documents e-book Play Framework Essentials, By Julien Richard-Foy will certainly provide you easy means to read. It could additionally be faster due to the fact that you could review your publication Play Framework Essentials, By Julien Richard-Foy almost everywhere you really want. This on-line Play Framework Essentials, By Julien Richard-Foy could be a referred book that you could enjoy the option of life.
Due to the fact that book Play Framework Essentials, By Julien Richard-Foy has excellent advantages to check out, lots of people now expand to have reading habit. Assisted by the established innovation, nowadays, it is easy to purchase guide Play Framework Essentials, By Julien Richard-Foy Even the book is not existed yet in the marketplace, you to look for in this internet site. As just what you can discover of this Play Framework Essentials, By Julien Richard-Foy It will actually ease you to be the first one reading this e-book Play Framework Essentials, By Julien Richard-Foy as well as obtain the perks.
An intuitive guide to creating easy-to-build scalable web applications using the Play frameworkAbout This Book
- Master the complexity of designing a modern and scalable Web application by leveraging the Play framework stack
- The key concepts of the framework are illustrated with both Scala and Java code examples
- A step-by-step guide with code examples based on a sample application built from the ground up, providing the practical skills required to develop Scala- or Java-based applications.
This book targets Java and Scala developers who already have some experience in web development and who want to master Play framework quickly and efficiently. This book assumes you have a good level of knowledge and understanding of efficient Java and Scala code.
What You Will Learn- Set up a unified development environment for both the client-side and server-side code
- Understand the challenges of building a scalable web application and master the solutions provided by Play framework
- Integrate the framework with existing client-side or server-side technologies such as persistence systems
- Harness the reactive programming model to process data streams
- Design robust, maintainable, and testable code
- Be proficient in manipulating JSON data blobs
- Deploy your application on a PaaS platform
Play is a framework to write web applications using Scala or Java. It provides a productive development environment, allowing you to just hit the "refresh" button in your browser to compile your changes and reload the application. Because of its stateless nature, the framework makes it easy to build applications that scale. Play provides a reactive programming model to harness the event-driven HTTP layer.
This book provides a step-by-step walkthrough of how to build a complete web application following best application development practices using Play framework 2. All aspects specific to web-oriented architectures are covered: the HTTP layer, JSON manipulation, HTML templating, asset compression and concatenation, form submission, content negotiation, security, and HTTP streaming. The book will also provide detailed architectural insights into Play framework to give you a better understanding in order to successfully build scalable applications.
- Sales Rank: #203699 in Books
- Published on: 2014-09-25
- Released on: 2014-09-25
- Original language: English
- Number of items: 1
- Dimensions: 9.25" h x .46" w x 7.50" l, .78 pounds
- Binding: Paperback
- 151 pages
About the Author
Julien Richard-Foy
Julien Richard-Foy likes to design code that seamlessly expresses the ideas he has in mind. He likes finding the right level of abstraction, separating concerns, or whatever else that makes the code easy to reason about, to maintain and to grow. He works at Zengularity, the company that created the Play framework, and actively contributes to the evolution of the framework. He aims at working on technically challenging and innovative projects that have a positive environmental or social impact on the world.
Most helpful customer reviews
3 of 3 people found the following review helpful.
Rapid Introduction to Play Framework
By Dustin Marx
"Play Framework Essentials" provides a rapid introduction to the Play Framework. In 7 chapters and under 200 pages, "Play Framework Essentials" introduces Play Framework and covers details such as building and exposing web services with Play, building web application clients that integrate with Play, persisting data from a Play application to a relational database, testing a Play application, refactoring Play application code, and deploying a Play application. The book also describes how developers can take advantage of Play's concurrency model, security support, internationalization support, and caching support.
"Play Framework Essentials" provides numerous code listings. These are black font on white background with no line numbers and no color syntax. The examples demonstrate applying Play in both Java and Scala programming languages and explains the relatively small number of features that are only available in one language or the other. There are also several graphics in the book that are mostly grayscale but one or two of them has some color in it.
Although there are fewer than 200 pages of substantive text in "Play Framework Essentials," the book still manages to cover a significant amount of technical detail. This is accomplished by spending very little time covering historical or background details of the Play Framework and jumping right into technical discussion.
2 of 2 people found the following review helpful.
make more interactive web pages
By W Boudville
Making a web application can be complex and Play tries to help simplify the process. Richard-Foy starts with the basics of explaining the architecture of such an application - from the client browser to the web servers. Play offers the choice of java or Scala for coding. Java is much better known to many.
Like Ruby on Rails and other languages, there is a standard projects layout for the files. So you need to know for Play that source files go under app/ and test files in test/, for example. As a practical matter, if you get deep into a project, you may or rather will need to manually go into such directories and add or remove files for debugging or other development needs.
The book also has good advice on testing whatever web application you make. One such is to use Selenium WebDriver which lets you write automated tests for a browser. Perhaps you have wondered about how nice this would be, well it has been done. You can now define numerous unit tests for your user interface and just run these all from one simple command.
A more advanced topic is how to handle long running requests from the browser. One solution is to use Ajax, while another is to use WebSockets. Either gives you greater interactivity from the user standpoint while she is running her browser. It lets your app directly push changes to the browser. A fundamental qualitative enhancement.
0 of 0 people found the following review helpful.
Great book on Play framework.
By Abhishek Srivastava
I love this book. I tried couple of play framework books on safari. I found that either they were were old and examples were obsolete or they were very poorly written.
Finally I found this book and it is very recent. all examples work. nothing is obsolete.
I also find that the book is comprehensive and well written.
Play Framework Essentials, by Julien Richard-Foy PDF
Play Framework Essentials, by Julien Richard-Foy EPub
Play Framework Essentials, by Julien Richard-Foy Doc
Play Framework Essentials, by Julien Richard-Foy iBooks
Play Framework Essentials, by Julien Richard-Foy rtf
Play Framework Essentials, by Julien Richard-Foy Mobipocket
Play Framework Essentials, by Julien Richard-Foy Kindle