JavaServer Faces (JSF) is a model-view-presenter framework typically used to create web applications. Version 2.x is a major step ahead compared to JSF 1.x, significantly expanding the standard set of components and component libraries. If you're using JSF 2.x, tag your questions as such so that ...
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?
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>
27
votes
1answer
7k views
When to use <ui:include>, tag files, composite components and/or custom components?
I started using JSF 2.0 with Facelets recently and got puzzled by new composite components knowing existing <ui:include> and other templating techniques offered by Facelets 1.x.
What is the ...
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 ...
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 ...
34
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 ...
22
votes
1answer
7k views
How to create a custom EL function?
Im new to JSF 2. My question is related to BalusC's answer to this question jsf2 ajax update parts based on request parameters I tried the kickstart code BalusC posted and I encountered an EL parsing ...
29
votes
3answers
41k 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 ...
4
votes
1answer
672 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 ...
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?
21
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 ...
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/>
...
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
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
1answer
6k views
Multiple h:form in a JSF Page
I am using the Facelet Templating Technology to layout my page in a JSF 2 app that I am working on.
In my header.xhtml, primefaces requires that menubar be enclosed in h:form.
<h:form>
...
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."
...
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 ...
13
votes
1answer
2k views
Which XHTML files do I need to put in /WEB-INF and which not?
After these questions:
JSF2 dynamic template
Dynamic ui:include
How can I retrieve an object on @WindowScoped?
How can I check if an object stored with @WindowScoped is stored correctly?
ICE Faces ...
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 ...
14
votes
1answer
15k views
How get the base URL?
I have this structure:
WebContent
resources
components
top.xhtml
company
about_us.xhtml
index.xhtml
top.xhtml is a component, that is used in index.xthml ...
3
votes
3answers
5k views
How I save and retrieve an image on my server in a java webapp
Here with another question on Images ( which seems to be more difficult than I initialy predicted) I'm working on a java Web app with JSF 2.0 ( apache myFaces) and I want this app to be able to upload ...
21
votes
5answers
17k views
JQuery Conflicts with Primefaces?
I have included JQuery1.5 in the header of a JSF page. In that page there is a bunch of Primefaces components already coded. After I have included the Jquery.js in the header of the page, some ...
6
votes
1answer
4k views
JSF commandButton works on second click
We are using JSF 2.1 in our project and below is my problem desription.
We are uisng facelets for the View and it has multiple ui:include tags.
The content area in home page is divided into mainarea ...
8
votes
2answers
9k views
JSF 2.0 use enum in selectMany menu
I want to use enum values in a selectManyCheckbox. The checkboxes get populated correctly, however, when selecting some values and submitting them, their runtime type is String, and not enum. My code:
...
3
votes
1answer
3k views
JSF component binding without bean property
How does exactly the following code work:
#{aaa.id}
<h:inputText id="txt1" binding="#{aaa}"/>
I mean, usually the component binding works, by specifying a property (of type UIComponent) in a ...
5
votes
4answers
6k views
How to ajax-refresh the main content part by navigation menu?
Hi there Im just learning JSF 2 thanks to this site I had learned a lot in such a short time.
My question is regarding how to impliment a common layout to all my jsf 2 pages and have only the content ...
31
votes
4answers
11k views
Are @ManagedBeans obsolete in JavaEE6 because of @Named in CDI/Weld?
Because of CDI (and its implementation Weld), every POJO in JEE6 can be annotated with @Named, which makes the POJO accessible to the view.
Does that mean that ManagedBeans are completely obsolete ...
5
votes
1answer
3k views
Typing Chinese with PrimeFaces' <p:editor> component
When I was still using PrimeFaces v2.2.1, I was able to type Chinese with and save the content into a .html file. However, when I updated to PrimeFaces v3.1.1, if I type Chinese on the editor and try ...
7
votes
1answer
3k views
JSF request scoped bean keeps recreating new Stateful session beans on every request?
I'm building my first Java EE application using JSF, PrimeFaces, Glassfish and Netbeans. Because I'm new, it's possible I'm approaching the core problem wrong.
Core problem: I want to maintain ...
4
votes
1answer
2k views
Is there any easy way to preprocess and redirect GET requests?
I'm looking for a best practise answer. I want to do some preprocessing for GET requests. So e.g. if the user is not allowed to see the page, redirect him to another page. But I don't want to use ...
5
votes
3answers
6k views
Display image from database with p:graphicImage
I'm trying to display image bytes which is saved in database as a StreamedContent in the <p:graphicImage> as follows:
<p:graphicImage value="#{item.imageF}" width="50" id="grpImage" ...
12
votes
2answers
15k views
How to call a method with a parameter in JSF
I' ve a JSF page that shows the content of a folder (really it's a dropbox's account content).
I'm using a dataTable to render the content of a ListArray object:
<h:dataTable style="text-align: ...
7
votes
1answer
2k views
How to use @EJB, @Inject and/or @Autowired in @FacesValidator
I need to inject a Spring managed bean in my @FacesValidator.
I tried the following:
@FacesValidator("emailExistValidator")
public class EmailExistValidator implements Validator {
@Autowired
...
4
votes
1answer
2k views
How to set converter properties for each row of a datatable?
I have created a custom ISO date time Converter:
public class IsoDateTimeConverter implements Converter, StateHolder {
private Class type;
private String pattern;
private boolean ...
5
votes
3answers
3k views
Difference between h:button and h:commandButton
In JSF 2, what is the difference between h:button and h:commandButton ?

