Sample Application using JSF, Spring 2.5, and Java Persistence APIs
Sample Application using JSF, Spring 2.5, and Java Persistence APIs
with Netbeans 6.1 and Glassfish v2
You can dowload the Sample Application using JSF, Spring 2.5, and Java Persistence APIs on Glassfish v2 and a related presentation JavaServer Faces, Java Persistence API, Java EE, Spring, Seam.
A Summary of the Technologies and Frameworks in the Sample Application
If you're not familiar with JavaServerFaces technology, the Java Persistence API, or Spring, here are brief descriptions:
- JavaServer
Faces Technology
(often referred to as JSF) is a server-side user interface (UI)
component framework for web applications. It simplifies the development
of sophisticated interactive web UIs by providing configurable,
reusable, extendable UI components, support for event handling, input
converters and validators, a navigation model, a component rendering
model, and a managed bean model for translating input events to
server-side behavior.
- The
Java Persistence API
provides a (plain old Java object) POJO-based persistence model for
Java EE and Java SE applications. It handles the details of how
relational data is mapped to Java objects, and it standardizes
Object/Relational (O/R) mapping.
- Spring is a lightweight, POJO-oriented, open source framework for developing Java enterprise applications. Spring does not reinvent application server functionality such as connection pooling, or provide an object-relational mapping layer. Instead it provides support for Inversion of Control (IoC), dependency injection, Aspect Oriented Programming (AOP), and an abstraction/services layer designed to make existing Java Enterprise application server technologies easier and more transparent to use.
Explanation of the usage of JSF, Spring 2.5 , and Java Persistence APIs in a sample Store Catalog Application
The sample application is an online catalog which allows a user to page through a list of items in a store.
The List.jsp page uses a JSF
dataTable
component to display a table of
catalog items.The dataTable component is useful when you want to show a set of results in a table. In a JavaServer Faces application, the
UIData
component
(the superclass of dataTable) supports binding to a collection of
data objects. The UIData
component does the
work of iterating over each record in the collection of
data objects. The HTML dataTable
renderer
displays the data as an HTML table. In the List.jsp web page the dataTable is defined as shown below: (Note: Red colors are for Java EE tags, annotations code, Blue for Spring specific and Green for my code or variables)
| Code Sample from: List.jsp |
<h:dataTable value='#{itemController.items}' var='dataTableItem' |
The
value attribute of a dataTable
tag references the data to be included
in the table. The value attribute in the dataTable tag
points to a list of catalog items identified by the expression #{itemController.items}. The value is bound to the items property of a managed bean
that has the managed bean name itemController.The
var
attribute specifies a
name , dataTableItem,
which is used as an alias for a single item in the dataTable.
In the dataTable
tag from the List.jsp
page, the value attribute points to a list
of catalog items. The var
attribute points
to a single item in that list. As the UIData
component iterates through the list, each reference to dataTableItem points to the current item in the
list.The dataTable's
value
is bound to the items
property
of the itemController
ManagedBean.This
ItemController ManagedBean items
property is defined as shown below:Code Sample from: ItemController.java |
| package controller; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component;
@Component("itemController")public DataModel getItems() { if (model==null || index != firstItem){ model=getNextItems(); } return this.model; } public DataModel getNextItems() { model = new ListDataModel(catalogService.getItems(firstItem,batchSize)); index = firstItem; return this.model; } |
@Component is
a Spring 2.5
"stereotype" annotation. @Repository,
@Service
and @Controller extend @Component
and are role designations for a common
three-tier architecture components (data access objects, services, and
web
controllers). these
stereotypes facilitate the
use of Spring AOP and post-processors for providing additional behavior
to the annotated objects based on those roles and can also be used for
auto-detection of components on the classpath. The
@Scope("session")
annotation binds a web-tier Spring-managed object to the specified
scope. "session"
scopes a bean definition to the lifecycle of a HTTP Session.The Spring 2.5 component scanning functionality removes the need to define JSF Managed Beans or Web tier "controllers" in the faces-config.xml, and other components in the Spring applicationContext.xml. The following configuration is used to trigger the auto-detection of all components in the controller package:
| Code Sample from: applicationContext.xml |
<context:component-scan
base-package="controller"
/> |
To integrate Spring with JSF configure the Spring JSF 1.2
ELResolver that delegates to the Spring root WebApplicationContext,
resolving name references to Spring-defined beans. Configure this resolver in
your faces-config.xml file as follows:| Code Sample from: faces-context.xml |
<application> |
The
ItemController
getItems()
method wraps a List of item objects, returned from the catalogService,
in a DataModel.
UIData,
the superclass of dataTable,
supports data binding to a
collection of data objects represented by a DataModel
instance. The data
collection underlying a DataModel instance is modeled as a collection
of row objects that can be
accessed by a row index.
The APIs
provide mechanisms to position to a specified row index, and to
retrieve an object that represents the data that corresponds to the
current row index. The
Item
properties Name, Photo, and price are
displayed with the dataTable
column
component, which displays a table column:| Code Sample from: List.jsp |
<h:dataTable value='#{itemController.items}' var='dataTableItem' <h:column> |
The
column
tags represent columns of data in a dataTable.
While
the UIData component is iterating over the rows of data, it processes
the UIColumn component associated with each column tag for each row in
the table.The
UIData component iterates through the list
of items returned by ItemController
getItems()
, ( referenced by value='#{itemController.items}') ,
and displays the dataTableItem.price.
Each
time UIData iterates through the list of items, it renders one
row in
each column.The dataTable and column tags use
facet
to represent parts of the
table that are not repeated or updated in the rows. These include headers,
footers,
and captions. Auto-Detection of Spring Components
The
CatalogDAO,
is defined as a Spring
bean by the @Repository
stereotype which extends
the @Component annotation and can be used for
auto-detection of components on the classpath.| Code Sample from: CatalogDAO.java |
|
The The Spring IoC container will inject the
catalogService
Spring Bean
into the catalogService
property
of the ItemController
JSF
ManagedBean : Code Sample from: ItemController.java |
|
@Autowired
marks a constructor, field, setter method or config method to be
autowired by Spring's dependency injection facilities. @Autowired makes
it possible to
inject
dependencies that match by type. The setCatalogService
is marked as @Autowired and accepts an argument of
type CatalogService. This is Spring 2.5 annotation-driven
dependency injection: This setter will be called passing in a Spring
bean of type CatalogService, obtained by type from the
Spring ApplicationContext. To enable this, add this to the Spring applicationContext.xml:
| Code Sample from: applicationContext.xml |
|
Using the Java Persistence API (JPA) with Spring 2.5
The Spring beanCatalogDAO uses
an EntityManager
Query object in the Java Persistence API to return a list of items. If
you look at the source code for CatalogDAO , you'll
notice that it annotates an EntityManager field with a @PersistenceContext
annotation. This injects an entity manager into the Spring Bean
the
same way that an Entity Manager is injected into an Enterprise
JavaBeans Technology (EJB) session bean.| Code Sample from: CatalogDAO.java |
package service; |
The createQuery method creates an instance of a Query
class for executing a Java Persistence query language statement. The setMaxResults()
method in Query sets the maximum number of results to
retrieve, and the setFirstResult method sets the position
of the first result to retrieve.
Item is an Entity class -- a typical Java
Persistence entity object -- which maps to an ITEM table that stores
the item instances. If you examine the source code for Item,
you'll see that it meets the two requirements for an entity:
- The class is annotated with an
@Entityannotation. - The primary key identifier is annotated with an
@Idannotation.
| Code Sample from: Item.java |
@Id @ManyToOne public String getName() { |
The
ItemController
ManagedBean pages through the list of Items
by
maintaining the firstItem and batchSize attributes and passing these as
parameters to the CatalogService getItems(firstItem,
batchSize) method, which gets the items for display in the table of
pets.The
ItemController
ItemCount
property is used to get and display
the number of Catolog items
in the data base on the List.jsp page:| Code Sample from: List.jsp |
itemController.firstItem +1} ..#{itemController.lastItem}
of #{itemController.itemCount}"/> |
This
ItemController
ItemCount property
is defined as shown below:| Code Sample from: ItemController.java |
|
The
ItemController
getItemCount()
method calls the CatalogService
interface to get
the count of the list of items. The CatalogDAO
Spring bean getItemCount()
method uses the JPA Query interface to get the count of
all items in the database item table:Code Sample from: CatalogDAO.java |
@Repositorypublic class CatalogDAO
implements CatalogService
{
@PersistenceContext(unitName="PetCatalogPu"). . . @Transactional(readOnly = true) public int getItemCount()
{ |
Displaying the Next List of items
A JSF
commandLink
is used to provide a link to click on to
display the next page of items. The commandLink
tag represents an HTML hyperlink and is rendered as an HTML <a> element. The commandLink
tag is used to submit an action event
to the application. | Code Sample from: List.jsp |
itemController.next}"
value="Next
#{itemController.batchSize}" |
This
commandLink action
attribute
references the ItemController
backing bean next()
method which calculates
the
next page's first row number and returns a logical outcome
String, which causes the List.jsp page
to display the next page's
list .
The ItemController
next
method is defined as shown below:Code Sample from: ItemController.java |
public String next() { |
The JavaServer Faces
NavigationHandler
matches the logical outcome, item_list
against the navigation rules in the application configuration resource
file faces-config.xml
to determine which page to access next. In this case, the
JavaServer Faces implementation loads the List.jsp
page after this method returns.| Code Sample from: faces-config.xml |
<navigation-rule>item_list</from-outcome> |
When the
List.jsp dataTable is rendered, the value binding
causes the ItemController
getItems method
to be called, as discussed before, which will cause the next list of
items to be displayed.
| Code Sample from: List.jsp |
<h:dataTable value='#{itemController.items}' var='dataTableItem' |
Displaying an Item's Details
A JSF
commandLink
is used to provide a link to click on to
display a page with the item details. This commandLink
action attribute
references The ItemController
detailSetup()
method:| Code Sample from: List.jsp |
itemController.detailSetup}"
value="#{dataTableItem.name}"/> |
The
ItemController
detailSetup()
method gets the item
data from the
current row of the dataModel,
and returns a string which causes the
Detail.jsp
page to display
the item details :Code Sample from: ItemController.java
|
|
The JavaServer Faces
NavigationHandler
matches the logical outcome, item_detail
against the navigation rules in the application configuration resource
file to determine which page to access next. In this case, the
JavaServer Faces implementation loads the Detail.jsp
page after this method returns.| Code Sample from: faces-config.xml |
|
The Detail.jsp uses the
outputText
component to display the ItemController
ManagedBean's item
properties:| Code Sample from: detail.jsp |
Controller.item.address.city}"
title="Address" />Controller.item.contactinfo.email}"
title="Address"/>
|
Conclusion
This concludes the sample application which demonstrates how to work with the JSF dataTable and DataModel to page through a list of Item Entities which are retrieved using the Catalog methods which use the Java Persistence APIs with Spring 2.5.
Running the Sample Code
The sample code for this tip is available as a NetBeans project. You can build and run the sample code using the NetBeans IDE.
Set up the Development Environment: (these directions are also here with screenshots)
- Download and install NetBeans 6.1 . Get the full distribution with Java EE and Glassfish v2.
- Install the Spring
Framework Plug-in into the NetBeans IDE:
- Select Tools from the NetBeans menu bar and select Plugins.
- Select Available Plugins tab and then select Spring Framework Support and then click the Install button.
- Open the Admin Console of the GlassFish V2 application server in
order to create the JDBC
Connection pool and JDBC resource:
- Select the NetBeans Services tab window.
- Expand Servers.
- Right click GlassFish V2 and select View Admin Console.
- Enter values to User Name and Password fields - the default is admin for User Name and adminadmin for the Password
- Create a connection pool using the Admin Console:
- Expand Resources->JDBC.
- Click Connection Pools.
- Click New on the right of the page.
- For the Name field, enter PETCatalogPool.
- For Resource Type, select javax.sql.DataSource from the drop-down menu.
- For Database Vendor field, select JavaDB from the drop-down menu.
- Click Next.
- Scroll down to the end of the page to see the Additional Properties section.
- For Connection Attributes field, enter ;create=true.
- For DatabaseName field, enter pet-catalog.
- For Password field, enter app.
- For User field, enter app.
- Click Finish.
- Remove the SecurityMechanism property
from the PETCatalogPool:.
- Select PetCatalogPool under Connection Pools node on the left.
- Select Additional Properties tab on the right and observe that the Edit Connection Pool Properties are displayed.
- Check Security Mechanism and click Delete Properties.Click Save.
- Start the Java DB server using NetBeans:
- Select Tools from the NetBeans top-level menu bar and select Java DB Database->Start Server.
- Make sure the PetCatalogPool is
operational using the Admin Console:
- Start the Java DB server (if it is not started already)
- Select the Admin Console General tab window.
- Click Ping button.
- Make sure that the Ping Succeeded message is displayed on the top.
- Start the Java DB server (if it is not started already)
- Create a JDBC resource using the Admin Console:
- Select JDBC Resources under JDBC on the left of the Admin Console .
- Click New button on the right.
- For JNDI Name field, enter jdbc/PETCatalogDB.
- For Pool Name field, select PETCatalogPool from the drop-down menu.
- Click OK.
- Create a Database connection using NetBeans:
- Select the NetBeans Services tab window.
- Right click Database and select New Connection.
- Observe that the New Database Connection dialog box appears.
- For the Database URL field, enter jdbc:derby://localhost:1527/pet-catalog.
- For User Name field, enter app.
- For Password field, enter app.
- Click OK.
- Create a database using NetBeans:
Select Tools from the NetBeans top-level menu bar and select Java DB Database->Create Database.- Observe that the Create Java DB Database dialog appears.
- For the Database Name field, enter pet-catalog.
- For User Name field, enter app.
- For Password field, enter app.
- Click OK.
- Populate the database tables in the pet-catalog database as
follows:
- Under Databases, select the connection pet-catalog that you just created.
- Right mouse click on pet-catalog and select Excecute Command.
- In the SQL command window copy paste all the sql text from
the file
<sample_install_dir>/SpringJPA/setup/sql/javadb/catalog.sql,
- At the top of the window click on the icon for Run SQL. This will create all of the tables and data for the application.
Open and Run the Sample code:
- Download the sample
code and extract its contents. You should now see the newly
extracted directory as
<sample_install_dir>/SpringJPA, where<sample_install_dir>is the directory where you installed the sample package. For example, if you extracted the contents toC:\on a Windows machine, then your newly created directory should be atC:\SpringJPA.
- Start the NetBeans IDE. Click Open Project in the File menu and
select the
SpringJPAdirectory you just unzipped.
- You will see a Reference Problems dialog when you open the
project.
That's because you need to add the Spring Framework to the
project. click Close in the dialog.
- Right click the
SpringJPAproject libraries node and select add Library, then select Spring Framework 2.5 (the Spring Framework Plug-in which you installed earlier), then click Add Library.
- Build the project as follows:
- Right click the
SpringJPAnode in the Projects window.
- Select Clean and Build Project.
- Right click the
- Run the project as follows:
- Right click the
SpringJPAnode in the Projects window.
- Select Run Project.
- Right click the
When you run the project, your browser should display the opening page of the JSF, Java Persistence API, and Spring 2.5 Sample Application (at http://localhost:8080/SpringJPA/).
Creating your own Netbeans Project with Spring 2.5 & Glassfish :
- If you want to create your own application, Create a new
Netbeans Web Application:
- In Netbeans select File New Project, then select Web ..Web Application, on the New Web Application Window, for Server select Sun Java System Applicaton server, Java EE 5 Version, set a project name and context path and click Next .
- on the frameworks window select Spring Framework 2.5, click
Finish.
- To Generate Entity classes from database tables: In the project window, right click on the project, select new File..Persistence Entity classes from database. Click next, then select your datasource, tables and create your persistence unit. For more info on how to do this try out the following Hands On Lab: Java EE 5, EJB 3.0, Java Persistence API (JPA)
- Configuration of
the XML files for Spring 2.5, JSF, and JPA, running on Glassfish.
For Spring configuration modify the applicationConfiguration.xml
and modify the web.xml
and faces-config.xml
as described below.
- modify the file /WEB-INF/applicationContext.xml
to the war WEB-INF
directory. This file is where you define your Spring
service beans, and resources. Below is the applicationContext.xml for
the sample app. For more information about configuring the Spring
applicationContext.xml for JPA see this article: Using the Java
Persistence API (JPA) with Spring 2.5
Code Sample from: applicationContext.xml
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
p:location="/WEB-INF/jdbc.properties" />
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
p:dataSource-ref="dataSource">
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.TopLinkJpaVendorAdapter"
p:databasePlatform="${jpa.databasePlatform}"
p:showSql="${jpa.showSql}"/>
</property>
<property name="loadTimeWeaver">
<bean class="org.springframework.instrument.classloading.glassfish.GlassFishLoadTimeWeaver"/>
</property>
</bean>
<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource"
p:driverClassName="${jdbc.driverClassName}"
p:url="${jdbc.url}"
p:username="${jdbc.username}"
p:password="${jdbc.password}" />
<bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"/>
<bean id="transactionManager" class="org.springframework.transaction.jta.JtaTransactionManager" />
<tx:annotation-driven />
<context:annotation-config/>
<context:component-scan base-package="controller" />
<context:component-scan base-package="service" />
<aop:aspectj-autoproxy/>
</beans>
- Add the spring framework ContextLoaderListener and context
parameter to your application's web.xml as shown below. For more
information on configuring Spring see these references: Using
Spring 2 with JSF , Spring
- Java/J2EE Application Framework Integrating with JavaServer Faces,
Advanced
Configuration
of the
Spring MVC Framework
Code Sample from: web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<listener>
<listener-class>
org.springframework.web.context.request.RequestContextListener
</listener-class>
</listener>
- Add the
SpringBeanFacesELResolverto the faces-config.xml :Code Sample from: faces-config.xml
<application>
<el-resolver>
org.springframework.web.jsf.el.SpringBeanFacesELResolver
</el-resolver>
</application>
- modify the file /WEB-INF/applicationContext.xml
to the war WEB-INF
directory. This file is where you define your Spring
service beans, and resources. Below is the applicationContext.xml for
the sample app. For more information about configuring the Spring
applicationContext.xml for JPA see this article: Using the Java
Persistence API (JPA) with Spring 2.5
For additional information see:
- What's New in Spring 2.5
- Intro to Spring 2.5
- Spring 2.5
framework samples (in download zip)
- Using the Java Persistence API (JPA) with Spring 2.0
- Data Access with Spring and JPA on Glassfish
- Using JPA in Spring without referencing Spring
- Spring - Java/J2EE Application Framework Integrating with JavaServer Faces
- Using
Spring 2 with JSF
- Building JavaServer Faces Applications with Spring and Hibernate
- Spring and Hibernate in GlassFish
- Harnessing the Power of Java Platform, Enterprise Edition (Java EE) Technology With Spring
- Java EE tutorial (includes great tutorial for JSF and JPA)
- Pro EJB 3: Java Persistence API book
- Java Persistence reference page on GlassFish Project
- Build a real-world Web application with JavaServer Faces, the Spring Framework, and Hibernate
- Login or register to post comments
- Printer-friendly version
- caroljmcdonald's blog
- 11948 reads






Comments
by juanpanie - 2009-04-12 10:17
Hi Carol, I have tried to set my application as indicated but I get the following exception when starting the context. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': BeanPostProcessor before instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/aspectj/lang/reflect/AjTypeSystem Then remove the line " aop:aspectj-autoproxy " and the context start but Spring Beans are injected as null and the application thows nullpointer Exceptions... any idea that can be wrong? Sorry for my Englishby caroljmcdonald - 2009-01-08 14:47
Java EE 6 will have bean validation (seam already has it)by danielfdezl - 2009-01-08 13:56
Very good...! I love you Carol.by pb16385 - 2008-12-19 01:48
Thanks Carol for your answer, I have another big question: what's the best way (in your experience) to provide validation on the beans if I don't use Spring MVC (so I cannot use Validator interface) ?by caroljmcdonald - 2008-12-17 10:43
the ItemConverter converts an Item object to a string. The dispatcher-servlet.xml file is not necessary, I left that there by mistake, it was created by Netbeans when creating a spring web project.by pb16385 - 2008-12-17 02:45
Hi Carol, I really appreciated this application and your explanations. I have two questions: 1) What's the ItemConverter used for ? 2) Why have you put a dispatcher-servlet.xml file under WEB-INF if you don't use Spring MVC ? Thanksby pb16385 - 2008-11-27 07:08
Hi Carol, I really appreciate this application and you explanations. I'm just approching Spring and there are not to many good example to watch out there. Anyway I have two questions: 1) What's the ItemConverter used for ? 2) Why have you put a dispatcher-servlet.xml file under WEB-INF ? Thanksby ilyaparamonov - 2008-08-08 12:04
Hello Carol, I think it's not a good idea to keep DB credentials in jdbc.properties file in J2EE environment. I propose to use JNDI-mapping instead. It can be easily reached by substituting the code <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" p:driverClassName="${jdbc.driverClassName}" p:url="${jdbc.url}" p:username="${jdbc.username}" p:password="${jdbc.password}" /> for the code <jee:jndi-lookup id="dataSource" jndi-name="jdbc/PETCatalogDB"/> What do you think about it?by caroljmcdonald - 2008-04-02 20:48
if you nest non-JSF tags within JSF tags, you must wrap the non-JSF tags in f:verbatim; if you dynamically include JSP pages that contain JSF content, you must use f:subview and also wrap all included non-JSF content in f:verbatim.by johnnyren - 2008-04-02 19:58
Hi Carol, How the Spring DataAccessExceptions propagated are handled in your JSF controller/JSP pages?by mchisty - 2008-04-03 04:36
Hmmm, checked with <f:verbatim/> too (with the following code). But still not working. Still shows the same output. This is surprising!! Is it possible for you to provide an example?
<f:verbatim>
<c:choose>
<c:when test="${dataUser.active==true}">Process Finished</c:when>
<c:otherwise>Enable or Disable</c:otherwise>
</c:choose>
</f:verbatim>
Thanks,
... Chisty
by caroljmcdonald - 2008-01-15 18:37
I added instructions on how to define a connection pool and jdbc resource using the Glassfish Admin console.by caroljmcdonald - 2008-07-17 12:54
Thanks. with each version I have to change something to get it to work, really a pain.by langles - 2008-07-17 12:46
Using Spring 2.5.5, I had to copy the jar file: aspectjweaver.jar to this directory in my NetBeans-6.1 installed Glassfish Server: C:\Program Files\glassfish-v2ur2\lib\endorsed\ before the SpringJPA sample would work. Before doing this, it would fail with: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/aspectj/lang/reflect/AjTypeSystemby caroljmcdonald - 2008-01-08 21:13
Je parle francais aussiby caroljmcdonald - 2008-01-08 21:13
Thanks, I will try that outby djomos - 2008-01-08 20:18
Hi Carol and thanks for the article. Just to mention two things about JSF and Spring 2.5 integration:*1* Spring 2.5 (finally) provides a JSF 1.2 compliant EL Resolver (the old one is JSF 1.1 compliant I think, but certainly not with 1.2). In the faces-config.xml, one should use:
<application> <el-resolver> org.springframework.web.jsf.el.SpringBeanFacesELResolver </el-resolver> </application>
instead of the old:
<application> <variable-resolver> org.springframework.web.jsf.DelegatingVariableResolver </variable-resolver> </application>
*2* And now this is really fun ! you can get Spring to manage the JSF managed-beans instead of the JSF implementation, hence enabling a first class citizen acces to Spring functionalities within a JSF managed bean. You can even drop declaring these beans in faces-config.xml (and applicationContext.xml).
To do so, one have to:
- As you did, annotate his controller with the @Controller annotation, optionally providing a name (String) under which the bean will be exposed to the JSF pages.
- Optionally, add a @Scope annotation to specify the ... well, you should have guessed: @Scope("session"), @Scope("request"), etc.
- Add those two lines in applicationContext.xml (you did so for the first):
<context:annotation-config /> <context:component-scan base-package="foo.bar" />But you have to add Spring's RequestContextListener to web.xml in order to get the Scope control working.
where foo.bar is the package where you controllers classes lie.
That's it ! you can now use those beans in the JSF pages or anywhere else (within the Spring container naturally). You can also use the @Autowired annotation on these beans, etc.
Anyway, I've talked about this point in my blog (in french).
Regards,
djo.mos
by caroljmcdonald - 2008-01-08 17:29
The focus of this series of blogs was to show the same app build using first just Java EE , then Java EE with Spring , then Java EE with Seam (with Netbeans and Glassfish). I also did the same app using JRuby and Rails. I don't think I will have time to do this using JPOX. I want to also show groovy and grails in the future.by paksegu - 2008-01-08 16:14
Hi Carol, Can you do a similar example using (JPOX)? Thanksby andreakendall - 2008-01-11 11:57
Correction I added aspectjweaver.jar to the Spring library not aspectjby dxxvi - 2008-01-08 08:36
Could you please point out which Spring 2.5 features you used and where you used them? Regards.by caroljmcdonald - 2008-01-08 10:50
The main changes I made in this app between Spring 2.0 and Spring 2.5 was to use the @Autowired annotation to inject the CatalogService into the ItemController. Other changes were in the applicationContext.xml to update for changes from Spring 2.0 to Spring 2.5.by mchisty - 2008-03-31 01:34
Hi,
Regarding my previous post, here is some code portion:
The following code demonstrates this:
<f:view>
<h:form>
<h:dataTable value="#{userAction.usersList}" var="dataUser" border="1">
<h:column>
<f:facet name="header"><h:outputText value="Name" /></f:facet>
<h:commandLink action="#{userAction.viewUserDetail}" value="#{dataUser.name}" />
</h:column>
<h:column>
<f:facet name="header"><h:outputText value="Is Enabled?" /></f:facet>
<h:outputText value="#{dataUser.active}" />
</h:column>
<h:column>
<f:facet name="header"><h:outputText value="Status" /></f:facet>
<!-- PLEASE NOTE THE FOLLOWING JSTL CONDITION CHECKING -->
<c:choose>
<c:when test="${dataUser.active=='true'}">Process_Finished</c:when>
<c:otherwise>Show_something_else</c:otherwise>
</c:choose>
</h:column>
</h:dataTable>
</h:form>
</f:view>
The output shown is like this (which is WRONG):
Name Email Address Is Enabled? Status
a a aaaa true Show_something_else
b b bbbb false Show_something_else
Whereas the correct output should be like this (the CORRECT form):
Name Email Address Is Enabled? Status
a a aaaa true Process_Finished
b b bbbb false Show_something_else
NOTE: Even if I do the condition checking like this: test="${dataUser.active==true}" or, test="${dataUser.active}", it does not work either. Interestingly it is showing the Boolean value correctly in the 4th column 'Is Enabled'.
What might be wrong? Any suggestion?
by mchisty - 2008-03-31 01:06
Hi Carol,, After intergrating Spring, JSF1.2 (web 2.4 or, web 2.5), everything worked fine except that there was a simple problem. If I use JSTL's tag for conditional checking, it does not seem to work at all. Have you faced this problem before? Could you just update this article slightly by adding a simple JSTL tag in your jsp page so that we have some idea about how to get JSTL tags work in sync with JSF1.2? Thanks, .... Chistyby djomos - 2008-01-09 08:14
Oui m'dame :-)Je le sais, vous être membre dans nos forums (developpez.com).
by andreakendall - 2008-01-10 22:06
So, how would some one do this in a real application where you would not want to have these pools and connections defined with your application?Is there some other tool that you would use to define the Pool and the JDBC connection?
by andreakendall - 2008-01-10 22:04
I got it to work.However I am not sure that the way I got this to work follows best practices.
What I ended up doing was
by andreakendall - 2008-01-10 21:10
Still getting the java.lang.RuntimeException: java.lang.RuntimeException: javax.naming.NameNotFoundExceptionMy theory is that the jdbc/PETCatalogDB is not being created. In your setup.xml file I see the following a 'create-resource-local" that looks like it would create this JNDI.
How do I create the JNDI jdbc/PETCatalogDB from the jdbc:derby://localhost:1527/pet-catalog connection?
by djomos - 2008-01-10 03:44
Hi Again.Just to mention that with the release of Spring 2.5.1 yesterday, Spring introduced two new Resolvers for JSF 1.2:
- DelegatingFacesELResolver
- WebApplicationContextFacesELResolver
Which acts as the old DelegatingVariableResolver for JSF 1.1. It's a bit blurred to be honest, and I definitely have to go back to Spring Reference and sort this out.Regards.
by franckandr09 - 2009-06-25 16:23
Hello Carol, I thank you a lot for your tutorial. I know little about spring. The use of the beans in this tutorial was clear. But i wonder if there's any form of statefull session beans in the spring framework. If so, how do i could use them and in what scenarios?. Thank you very much.