Book Image

PrimeFaces Blueprints

By : Sudheer Jonna, Ramkumar Pillai
Book Image

PrimeFaces Blueprints

By: Sudheer Jonna, Ramkumar Pillai

Overview of this book

<p>Through this book, you will gain practical experience in building web applications for a variety of business models. Starting with a basic application that will help you get acquainted with UI application development using PrimeFaces, you will learn about the significance of Ajax components. You will then be introduced to code compilation and generation in PrimeFaces. Following our first application, you will learn how to develop an employee registration application utilizing the form components of PrimeFaces. You will then learn how to use the layout and grouping components demonstrated through a POS application.</p> <p>Finally, you will discover how to build rich and interactive applications such as an online shopping cart, a movie portal, an e-commerce application, a news portal, an online chat messenger, and also a healthcare products application, each illustrating the intuitive components offered by PrimeFaces.</p>
Table of Contents (17 chapters)
PrimeFaces Blueprints
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a project and implementing the application screens


This section will show you how to implement an employee registration application using the PrimeFaces form components. The first step to is to start the project by creating the template structure using standard JSF Facelets and then to apply all the possible form components for the creation of the login screen, the change of password functionality, and the registration and application configuration screens. We can also use a few of the supported components to complete the fully fledged registration application.

Before the actual implementation, you should create the project structure with all the folder structures.

Note

Remember to run all the SQL commands of mysqlquery.txt (which exist under the query folder) before proceeding with the front end application design.

The project structure

The structure of the application should consider presentation, business, and data access as the layers in order to make a proper web application. After...