Book Image

Apache MyFaces 1.2 Web Application Development

Book Image

Apache MyFaces 1.2 Web Application Development

Overview of this book

Hypes and trends (such as Web 2.0) cause a change in the requirements for user interfaces every now and then. While a lot of frameworks are capable of meeting those changing requirements, it often means you as a developer need in-depth knowledge of web standards, such as XHTML and JavaScript. A framework like Apache MyFaces that hides all details of how the page is rendered at the client and at the same time offers a rich set of tools and building blocks could save you a lot of time, not only when you're building a brand new application but also when you're adapting an existing application to meet new user interface requirements.This book will teach you everything you need to know to build appealing web interfaces with Apache MyFaces and maintain your code in a pragmatic way. It describes all the steps that are involved in building a user interface with Apache MyFaces. This includes building templates and composition components with Facelets, using all sorts of specialized components from the Tomahawk, Trinidad, and Tobago component sets and adding validation with MyFaces Extensions Validator.The book uses a step-by-step approach and contains a lot of tips based on experience of the MyFaces libraries in real-world projects. Throughout the book an example scenario is used to work towards a fully functional application when the book is finished.This step-by-step guide will help you to build a fully functional and powerful application.
Table of Contents (22 chapters)
Apache MyFaces 1.2
Credits
About the Author
Acknowledgement
About the Reviewers
Preface
Trinidad Tags
Trinidad Text Keys
Default JSF Error Messages
ExtVal Default Error Messages

Using the service facade in the View layer


Now that we’ve created our service facade, it’s time to adapt our web application to use this service facade instead of the dummy objects we used so far. For the Employees, we had a managed bean that contained a list of employees. To get access to our persisted Employee objects, we have to call the methods in our service facade from the backing bean of our page. We already have the EmployeesTable backing bean, so let’s add some methods there to access our facade:

private List<Employee> empList;
public List<Employee> getEmployees() {
if (null == empList) {
empList = service.getEmployees();
}
return empList;
}
public void saveSelected(ActionEvent event) {
RequestContext rc = RequestContext.getCurrentInstance();
Employee emp = (Employee) rc.getPageFlowScope()
.get("selectedEmployee");
service.updateEmployee(emp);
}

The getEmployee() method simply delegates the call to the service. The result is stored in a member variable. Combined with...