JavaServer Faces (JSF) is a model-view-presenter framework typically used to create web applications. Using the standard components and render kit, stateful HTML views can be defined using JSP or Facelets tags and wired to model data and application logic.
64
votes
4answers
35k views
h:commandLink / h:commandButton is not being invoked
I found a problem when using the <h:commandLink> or <h:commandButton> in an include page, the action and actionlistener associated with the UICommand component is simply not being invoked. ...
22
votes
2answers
9k views
JSTL in JSF2 Facelets… makes sense?
I would like to output a bit of Facelets code conditionally.
For that purpose, the JSTL tags seem to work fine:
<c:if test="${lpc.verbose}">
...
</c:if>
However, I'm not sure if ...
47
votes
1answer
7k views
How to choose the right bean scope?
I noticed that there are different bean scopes like:
@RequestScoped
@ViewScoped
@SessionScoped
@ApplicationScoped
What is the purpose of each? How do I choose a proper scope for my bean?
68
votes
8answers
19k views
Why JSF calls getters multiple times
Let's say I specify an outputText component like this:
<h:outputText value="#{ManagedBean.someProperty}"/>
If I print a log message when the getter for someProperty is called and load the ...
159
votes
5answers
60k views
What is the difference between JSF, Servlet and JSP?
Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
40
votes
2answers
22k views
When should I use h:outputLink instead of h:commandLink?
When should I use an <h:outputLink> instead of an <h:commandLink>?
I understand that a commandLink generates an HTTP post; I'm guessing that outputLink will generate HTTP gets. That said, ...
45
votes
2answers
50k views
How to include another XHTML in XHTML using JSF 2.0 Facelets?
What is the most correct way to include another XHTML page in an XHTML page? I have been trying different ways, none of them are working.
74
votes
3answers
29k views
Differences between action and actionListener
What is the difference between action and actionListener, and when should I use action versus actionListener?
42
votes
2answers
12k views
ViewParam vs @ManagedProperty(value = “#{param.id}”)
What is the difference between defining View Params like this:
<f:metadata>
<f:viewParam name="id" value="#{someBean.id}"/>
</f:metadata>
And defining the property in the ...
57
votes
3answers
31k views
Migrating from JSF 1.2 to JSF 2.0
I am working with a rather large app written in JSF 1.2.
JSF 1.2 is around 6 years old now. I need to upgrade to JSF 2.0. How painful will this be? I noticed that some attributes in custom tags have ...
31
votes
1answer
17k views
What can <f:metadata> and <f:viewParam> be used for?
Can anyone clarify how we can use in general, or a in real world example, this snippet?
<f:metadata>
<f:viewParam id="myId" value="#{myValue}"/>
</f:metadata>
75
votes
4answers
54k views
Best way for user authentication on JavaEE 6 using JSF 2.0?
I'm wondering what the current state of art recommendation is regarding user authentication for a web application making use of JSF 2.0 (and if any components do exist) and JEE6 core mechanisms ...
34
votes
3answers
41k views
How can I pass a parameter to a commandLink inside a datatable?
I'm using Primefaces in a JSF 2 application. I have a <p:dataTable>, and instead of selecting rows, I want the user to be able to directly execute various actions on individual rows. For that, I ...
82
votes
5answers
17k views
What are the main disadvantages of Java Server Faces 2.0?
Yesterday I have seen a presentation on Java Server Faces 2.0 which looked truly impressive, even though I am currently a happy ASP.NET MVC / jQuery developer. What I liked most about JSF is the huge ...
23
votes
1answer
7k views
What is the JSF resource library for and how should it be used?
The JSF <h:outputStylesheet>, <h:outputScript> and <h:graphicImage> components have a library attribute. What is this and how should this be used? There are a lot of examples on the ...
32
votes
6answers
8k views
What is the need of JSF. When UI can be achieved from css html javascript jQuery?
I was reading about JSF that its a UI framework and provides some UI components. But how is it better or different from number of components that can are available from extjs or jQuery or combination ...
12
votes
4answers
13k views
How to reference components in JSF ajax? Cannot find component with identifier “foo” in view
The following code is inspired from Primefaces' DataGrid + DataTable Tutorials and put into a p:tab of a p:tabView residing in a p:layoutUnit of a p:layout.
The code stops working and gives the ...
49
votes
2answers
6k views
Difference between JSP EL, JSF EL and Unified EL [closed]
I would like to know the detailed difference between the Expression Languages (EL).
There is JSP EL, JSF EL and Unified EL.
I would like to know the history behind the EL and what the latest EL is ...
35
votes
3answers
48k views
JSF - get managed bean by name
I'm trying to write a custom servlet (for AJAX/JSON) in which I would like to reference my @ManagedBeans by name. I'm hoping to map:
http://host/app/myBean/myProperty
to:
...
6
votes
1answer
2k views
Uploaded image only available after refreshing the page
I've a graphicImage set to display an image with the path set on a bean property which is initially set to "No photo". When I upload a picture using PrimeFaces, the file is successfully saved and the ...
5
votes
1answer
5k views
Invoke direct methods or methods with arguments / variables / parameters in JSF 2.0
How can I in JSF 2.0 invoke direct methods or methods with arguments / variables / parameters?
For example, getting the list size in EL:
<h:outputText value="#{bean.list.size()}" />
Or ...
29
votes
3answers
42k views
javax.faces.application.ViewExpiredException: View could not be restored
I have written simple application with container-managed security. The problem is when I log in and open another page on which I logout, then I come back to first page and I click on any link etc or ...
16
votes
5answers
29k views
JSF 2.0 File upload
I am looking around a few blogs, to try to find how to upload files using JSF 2.0
But all the solutions kind of confuse me. I would like to know what do I exactly need to be able to successfully ...
22
votes
3answers
18k views
How to use PrimeFaces p:fileUpload? Listener method is never invoked
I'm trying to upload a file using PrimeFaces, but the fileUploadListener method isn't being invoked after the upload finishes.
Here is the view:
<h:form>
<p:fileUpload ...
13
votes
5answers
11k views
Recommended JSF 2.0 CRUD frameworks
Can somebody recommend any framework to facilitate CRUD development in JSF 2.0?
Aspects I value most:
As lightweight as possible; limited dependencies on third party libraries
Support for an ...
13
votes
2answers
10k views
How to stream a file download in a JSF backing bean?
Apache MyFaces Trinidad has component <tr:fileDownloadActionListener>.
I'm having no problems with using it like it is described in docs.
Is there any way of simulating same behavior as this tag ...
9
votes
1answer
3k views
Structure for multiple JSF projects with shared code
I have two JSF projects that share a lot of code - java classes, xhtml files, tag libraries, css and javascript files etc. My dev environment/platform consists mainly of Eclipse, Ant, Perforce and ...
4
votes
1answer
684 views
Why do I need to nest a component with rendered=“#{some}” in another component when I want to ajax-update it?
So I've found a few answers close to this, and I've found enough to fix the problem I had. But even so, I'm curious as to understand the workings around this. Let me illustrate with an example :
I ...
33
votes
5answers
10k views
Is it possible to use JSF+Facelets with HTML 4/5?
Facelets relies on XML namespaces to work with XHTML. How are HTML 4, and as far as I know, HTML 5 do not support namespaces. Also HTML 5 has some new elements that are not available in XHTML. Even ...
9
votes
2answers
7k views
load the image from outside of webcontext in jsf
I need to display the image which is reside outside of webapps folder in web application using jsf <h:graphicimage> tag or html's <img> tag. How can I achieve that?
11
votes
2answers
13k views
How to create dynamic JSF 1.2 form fields
We are using JSF 1.2 and Seam 2.2.
I have found some similar questions like this one, however there are so many ways this can be done that it made me more confused.
We are getting a XML file that we ...
4
votes
1answer
3k views
Validation Error: Value is not valid
I have a problem with a p:selectOneMenu, no matter what I do I cannot get JSF to call the setter on the JPA entity. I have this working on several other class of the same type (ie, join table classes) ...
22
votes
2answers
11k views
IllegalStateException: Cannot create a session after the response has been committed
I'm catching the following exception in a very simple JSF 2 page:
java.lang.IllegalStateException: Cannot create a session after the response has been committed
at ...
16
votes
1answer
9k views
JSF Facelets: Sometimes I see the URL is .jsf and sometimes .xhtml. Why?
Been try to learn JSF, and sometimes I see the URL is .jsf and sometimes is .xhtml. Can sometimes fill my knowledge, please? When I create a JSF using Facelet, the file extension is .xhtml, so where ...
18
votes
3answers
9k views
What components are MVC in JSF MVC framework?
In JSF MVC framework who is Model, View, and Controller?
10
votes
2answers
11k views
JSF locale is set per request,not for session
faces-config:
<application>
<locale-config>
<default-locale>ru</default-locale>
<supported-locale>ua</supported-locale>
...
8
votes
2answers
4k views
How to make a grid of JSF composite component?
I have lot's of outputLabel and inputText pairs in panelGrids
<h:panelGrid columns="2">
<h:outputLabel value="label1" for="inputId1"/>
<h:inputText id="inputId1/>
...
17
votes
3answers
4k views
Conditionally displaying JSF components
First, I am new to Java EE, came from a strong ASP .NET development background.
I have gone through the net, and I might miss this but it seems like there is no simple and straight-to-the-point ...
5
votes
2answers
3k views
When to use valueChangeListener or f:ajax listener?
What's the difference between the following two pieces of code - with regards to listener placement?
<h:selectOneMenu ...>
<f:selectItems ... />
<f:ajax ...
5
votes
2answers
10k views
How to select PrimeFaces UI or JSF components using jQuery?
I am trying to implement jQuery with PrimeFaces and JSF components, but it's not working properly. When I tried to do the same with HTML tags it;s working properly.
Here is the code with HTML tags ...
10
votes
2answers
4k views
CSRF, XSS and SQL Injection attack prevention in JSF
I have a web application built on JSF with MySQL as DB. I have already implemented the code to prevent CSRF in my application.
Now since my underlying framework is JSF, I guess I don't have to handle ...
17
votes
3answers
6k views
How can I populate a text field using primefaces ajax after validation errors occur?
I have a form in a view which performs ajax partial processing for autocompletion and gmap localization. My backing bean instantiates an entity object "Address" and is to this object that the form's ...
10
votes
1answer
3k views
ApplicationScope bean that uses a TimerTask (sheduler), good or bad?
I would like to know if it's ok to use TimerTask inside application scoped beans.
Example, lets say that I want to create a timer task that sends out a bunch of emails to every registered member one ...
6
votes
2answers
4k views
How to use JSF generated HTML element ID in CSS selectors?
I've been working with a simple Java EE project using JSF.
<h:form id="phoneForm">
<h:dataTable id="phoneTable">
</h:dataTable>
</h:form>
It generates an id for ...
29
votes
2answers
10k views
Why does JSF need to save the state of UI components on the server side?
Until what point in time does JSF save the state of UI components on the server side and when exactly is the UI component's state information removed from the server memory? As a logged-in user on ...
14
votes
2answers
3k views
JSF2.0 doesn't support cross-field validation, is there a workaround?
JSF2.0 only allows you to validate the input on one field, like check to see if it's a certain length. It doesn't allow you to have a form that says, "enter city and state, or enter just a zip code."
...
22
votes
3answers
10k views
JSF implementations and component libraries [closed]
I have just started using JSF and I have three questions related to JSF implementations and component libraries
What is the difference between JSF Implementations and Component Libraries?
What are ...
11
votes
3answers
6k views
JSF2, can I add JSF components dynamically?
Can I add JSF components dynamically?
I know this should be possible in JavaScript somehow. Do anybody know how to do this in JSF? I think the major problem is how do I get or set values later via ...
4
votes
2answers
3k views
How do I override those classes defined in primefaces.css?
I've created my own theme as a separate Maven project, and it is loaded correctly.
Now I want to change the size of an component. For example, a <p:orderList>. It has a class called ...
1
vote
2answers
1k views
How to reference resource in Facelets template?
I've done tutorial about Facelets templating.
Now I've tried to do page that isn't in same directory as template. I've got problems with page style, because of styles are referenced with relative ...

