JSF (JavaServer Faces) offers a component library to define your application's architecture. Understand how to add Faces components to a JSF page and link them to page data here.
For the purpose of learning the packaging of a Java EE 6 application, we will show how to combine some JBoss JSF components, such as Managed Beans and JSF views, with some Enterprise components, such as the EJB singleton, which we formally introduced in Chapter 3, Configuring Enterprise Services.
In this example, we will create a simple caching system that uses an EJB singleton to handle the cache in memory. Later, we will show how to introduce data persistence to keep our cache on storage.
Enthusiastic about exploring the skill set of Jboss? Then, have a look at the JBOSS TRAINING COURSE together with additional knowledge.
Let’s start by adding a page named home.xhtml
to your Dynamic Web Project:
This page references a Managed Bean named “manager “, which is used to store and retrieve key/value pairs. Managed Beans are simple Java classes, which are used as models for UI components. In JBoss JSF 1.2, for a bean to become a managed bean, you had to register it in the JSF configuration file (faces-config.xml). One of the biggest annoyances was that as the number of beans grew, the JSF configuration file grew as well, and it was difficult to keep track of all names and changes in three different files that were all “connected” (JSF configuration file, the JSF view, and the bean itself).
Luckily, JBoss JSF 2 has introduced annotations to register Managed Beans. With annotations, the bean and its registration are in the same place (Java class), so it becomes much easier to manage.
Frequently asked Jboss Interview Questions.
Now, let’s see how to code the PropertyManager Managed Bean:
The most relevant part of this class is the @ManagedBean annotation that registers this class as a JSF Managed Bean. Next, the @EJB annotation is used to inject the SingletonBean into the class.
The SingletonBean is an EJB, which is marked with the special @javax.ejb.Singleton annotation. A class with such annotation is guaranteed to be instantiated only once, thus it is the middleware equivalent of the J2SE singleton pattern. In the Java EE context, they are primarily used to store application-wide shared data.
Create a new class named SingletonBean. The aim of this class will be to store key-value pairs in HashMap:
This class is intentionally placed in a package com.packtpub.chapter4.entity, since in the next section of this chapter, we will use this class as an Entity for storing data.
If you have completed all these steps correctly, you will end up with a project containing the following items:
By default, a Web application inherits the Web context name from the archive name, which is deployed on the application server. So, in our example, if we deploy an archive named as7project.war, it will be accessible using the Web context name as7project, as shown by the following image:
The context name is, however, customizable, and the simplest way to achieve it (without changing the archive name) is by adding a jboss-web.xml
file to the WEB-INF folder of your project:
The content of this file will include the custom Web context, as specified by the context-root element:
Our work-support plans provide precise options as per your project tasks. Whether you are a newbie or an experienced professional seeking assistance in completing project tasks, we are here with the following plans to meet your custom needs:
Name | Dates | |
---|---|---|
JBoss Training | Nov 19 to Dec 04 | View Details |
JBoss Training | Nov 23 to Dec 08 | View Details |
JBoss Training | Nov 26 to Dec 11 | View Details |
JBoss Training | Nov 30 to Dec 15 | View Details |
Ravindra Savaram is a Technical Lead at Mindmajix.com. His passion lies in writing articles on the most popular IT platforms including Machine learning, DevOps, Data Science, Artificial Intelligence, RPA, Deep Learning, and so on. You can stay up to date on all these technologies by following him on LinkedIn and Twitter.