Home  >  Blog  >   JBoss

Adding JSF components

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.

Rating: 4
  
 
2789
  1. Share:

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. 

Adding JBoss JSF components

Let’s start by adding a page named home.xhtml to your Dynamic Web Project:

JSF Components in JBoss 2
JSF Components in JBoss

JSF Components in JBoss 3

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).

MindMajix YouTube Channel

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:

JSF Components in JBoss 5

JSF Components in JBoss 6

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.

Adding the EJB layer

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:

JSF Components in JBoss 7

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:

jboss project explorer

Choosing the web context of the application

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:

JSF Components in JBoss 8

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:

Project explorer 2

The content of this file will include the custom Web context, as specified by the context-root element:

Explore Jboss Sample Resumes! Download & Edit, Get Noticed by Top Employers!
Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
JBoss TrainingApr 27 to May 12View Details
JBoss TrainingApr 30 to May 15View Details
JBoss TrainingMay 04 to May 19View Details
JBoss TrainingMay 07 to May 22View Details
Last updated: 03 Apr 2023
About Author

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.

read more