Tagged Questions

JSF 2.0 is a major step ahead as compared to JSF 1.x. Lot of things which are hardly possible in JSF 1.x can be done more elegantly in JSF 2.0. If you're using JSF 2.0, it's important to tag your questions as such so that more suited answers can be given.

learn more… | top users | synonyms (3)

42
votes
5answers
5k 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 ...
25
votes
4answers
9k 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 ...
23
votes
1answer
1k views

How to place markers on google map

I use the google map tool from primefaces. I want my user to be able to place just one marker on a map. The values of the coordinates should be stored in a managed bean variables. How can i do that? ...
19
votes
4answers
4k views

Are @ManagedBean's 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 ...
17
votes
3answers
3k views

Differences between action and actionListener

What is the difference between action and actionListener. When sould I use action and/or actionListener? My question is related JSF 2.0.
15
votes
2answers
18k 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: ...
13
votes
2answers
4k 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, ...
10
votes
3answers
3k views

Trouble with Primefaces 3.0.M2 SelectOneMenu Ajax behavior

I am having trouble with implementing two SelectOneMenu controls, where data in the second one depends on the selection made in the first. This example on the primeFaces showcase is almost the same as ...
10
votes
1answer
654 views

How to create a modular JSF 2.0 application?

I have an application with a well defined interface. It uses CDI for resolution of the modules, (Specifically it uses Instance<> injection points on API interfaces to resolve modules) and passes ...
9
votes
2answers
313 views

JSF2 Static Resource Management — Combined, Compressed

Is anyone aware of a method to dynamically combine/minify all the h:outputStylesheet resources and then combine/minify all h:outputScript resources in the render phase? The comined/minified resource ...
9
votes
3answers
861 views

JBoss Weld + java.lang.OutOfMemoryError: PermGen space

I've just switched to Weld to make use of CDI JSF 2 Beans + conversation scope. Here's my maven dependency : <dependency> <groupId>org.jboss.weld.servlet</groupId> ...
9
votes
5answers
5k 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 ...
9
votes
1answer
2k 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 ...
9
votes
1answer
2k views

Acquire full prefix for a component clientId inside naming containers with JSF 2.0

I am updating a component via AJAX in JSF: <h:form> <h:outputLink>Click me <f:ajax event="click" render=":messages" /> </h:outputLink> </h:form> ...
8
votes
1answer
696 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 ...
8
votes
5answers
6k views

JSF f:event preRenderView is triggered by f:ajax calls and partial renders, something else?

So we have an f:event: <f:metadata> <f:event type="preRenderView" listener="#{dashboardBacking.loadProjectListFromDB}"/> </f:metadata> Which is triggered as desired on ...
7
votes
1answer
644 views

IllegalStateException: Cannot create a session after the response has been committed

I'm catching the following exception in a very simple jsf2 page: java.lang.IllegalStateException: Cannot create a session after the response has been committed at ...
7
votes
5answers
3k views

Generic JSF entity converter

I'm writing my first Java EE 6 web app as a learning exercise. I'm not using a framework, just JPA 2.0, EJB 3.1 and JSF 2.0. I have a Custom Converter to convert a JPA Entity stored in a SelectOne ...
7
votes
3answers
7k views

The form component needs to have a UIForm in its ancestry. Suggestion: enclose the necessary components within <h:form>

Here is my form: <form action="j_security_check"> <h:panelGrid columns="2" bgcolor="#eff5fa" cellspacing="5" frame="box" styleClass="center"> <h:outputLabel value="User ...
7
votes
2answers
6k views

JSF 2.0 AJAX: Call a bean method from javascript with jsf.ajax.request (or some other way)

Some background: I am building a custom JSF component. The component is basically a text editor and it should have a "Save" -button for saving the content string of the editor. As I am using the ...
7
votes
1answer
13k 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 ...
7
votes
3answers
3k 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 ...
7
votes
4answers
2k views

JSF2 - backed by EJB or ManagedBean?

As I am learning JSF2, I realized I am not sure what the backing components should be. From design point of view, what is the difference between EJBs and @ManagedBeans? In the end I am going to use ...
6
votes
1answer
134 views

JSF2 redirect with includeViewParams allows users to enter EL expression which are resolved into text fields

I have a JSF2 XHTML page that defines view parameters, this allows one to have bookmarkable URLs. The XHTML page includes the parameters: <f:metadata> <f:viewParam name="searchName" ...
6
votes
1answer
226 views

Multiple validators on one field with JSF bean validation

i am trying to make multiple validation one one field @NotBlank(message = "{name.required}") @Max(value = 25, message = "{long.value}") public String name; JSF: <h:inputText ...
6
votes
1answer
280 views

How Do I Use @ConversationScoped

I am writing a JSF 2.0 application, and I want to use CDI annotations instead of the "equivalent" JSF annotations. In other words, @Model or @Named instead of @ManagedBean, and @Inject instead of ...
6
votes
1answer
209 views

Is Flash scope free of race conditions?

I found out that the JSF 2.0 Flash scope is implemented in Mojarra 2.x via a cookie. What seems to happen is that when navigating from view A to view B using The Flash, JSF sends a redirect response. ...
6
votes
1answer
223 views

Exchange data in real time over AJAX with multiple threads

I am developing an application in JSF 2.0 and I would like to have a multiline textbox which displays output data which is being read (line by line) from a file in real time. So the goal is to have a ...
6
votes
1answer
442 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." ...
6
votes
2answers
2k views

Preserving FacesMessage after redirect for presentation through <h:message> in JSF

I have what I suppose is a common problem: some managed bean has an action which adds some messages to the context: FacesMessage fm = new FacesMessage("didn't work"); ...
6
votes
2answers
4k views

Does view scope bean survive Navigation JSF

I am quite confused with the view scope. I thought it could survive a JSF navigation to another page (no redirect, obviously), but it doesn't. So what's the advantage to use it instead of request ...
6
votes
1answer
1k views

JSF 2: Using enums in the rendered attribute

Is there any way to check declaratively whether an enum has a specified value. For example: <h:graphicImage name="error.png" library="images" rendered="#{viewController.current.status == ...
6
votes
3answers
10k views

PrimeFaces commandButton doesn't navigate or update

I'am using Primefaces to make my app a little bit more beautiful. I noticed that p:commandButton and h:commandButton don't work the same way. The p:commandButton calls the method and nothing else ...
6
votes
2answers
2k views

How to set JSF2 <welcome-file> with faces servlet mapping?

I have a simple JSF2 app using Facelets. My web.xml is set as follows:- <servlet-mapping> <servlet-name>Faces Servlet</servlet-name> <url-pattern>*.jsf</url-pattern> ...
6
votes
1answer
1k views

JSF : Better way to check for existence of <h:message for=“id”/>

I have a form in which validation error message needs to be displayed below the input elements. The error needs to be highlighted by showing an error bubble around the error message and the input ...
6
votes
1answer
1k views

Why is the getter called so many times by the rendered attribute?

Related to a previous example, i tried to monitor my get/set methods on the server (when they are called, and how often). So, my actual been look such : @ManagedBean(name="selector") @RequestScoped ...
6
votes
1answer
838 views

JSF 2.0: Is there any advantage in using DataModel<T> over List<T> for CRUD applications

One advantage of the datamodel is that you get the row index in a table. But I find this unnecessary, since you can access the current row element using the var attribute of h:datatable. And I often ...
6
votes
1answer
2k 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 ...
6
votes
4answers
7k views

Does the Eclipse IDE support JSF 2.0?

I have the WTP 3.1 plugin installed and have also installed the Glassfish v3 plugin. I am able to register my server. When I create a dynamic web project, I can see that the maximum dynamic web ...
6
votes
2answers
4k views

Looking for good book for JSF 2.0

I'm looking for a good book to learn JSF 2.0. I have very good understanding of servlets, but little experience with JSF. I also want the book to include new JSF (2.0) features.
5
votes
2answers
360 views

Why does JSF save component tree state?

There appears to be a difference between managed bean state and component tree state. You can control managed bean state by using annotations like @RequestScoped and @SessionScoped, but it seems you ...
5
votes
2answers
97 views

Why does ListDataModel not work with a bounded type parameter?

I just tried to create a ListDataModel with a bounded type, like this: DataModel<? extends Foo> model = new ListDataModel<? extends Foo>(fooList); , where fooList is of the type ...
5
votes
1answer
299 views

EJB 3.1 Singleton + JPA + JSF design advice needed

Given: simple JSF webapp (no Seam), having JSF beans calling few EJB's which in turn load and persist JPA entities. What I want to is to use @Singleton annotation for ejb's and inject EntityManager ...
5
votes
1answer
209 views

Localized images in JSF 2.0 application

I have a JSF 2.0 application which allows the user to change the site's language which should affect both texts and images. Currently the locale is set in a session bean and each page has with ...
5
votes
1answer
261 views

JSF Recursive Composite Component

I have a recursive object bean structure, which is like list of Master DTO -> value -> list of Master DTO I am trying to create a recursive composite component with one input text and a button with ...
5
votes
5answers
262 views

How to display a pop up notification to the user?

I am developing an application which requires that user must be notified about some background events i.e. invitation from other user, reminder time out etc. Whenever the event occurs the controller ...
5
votes
1answer
463 views

Sending a callback to JSF a4j:jsFunction oncomplete event

I am trying to make call to JSF functions in my app more dynamic. Instead of static way of writing callback functions to oncomplete event by hand, I wish to send a callback function as a parameter and ...
5
votes
2answers
1k views

JSF dynamic include using Ajax request

In JSF2, is it possible to change the of value of src of ui:include dynamically using Ajax request (like for example PrimeFaces p:commandButton)? Thank you. <h:form> ...
5
votes
2answers
2k views

selectonemenu inside table in jsf2

I have a table with 2 selectOneMenu components. I would like that once a record was chosen in the first selectOneMenu component it will update the other selectOneMenu with Ajax in the same row. My ...
5
votes
2answers
165 views

JSF: AJAX Testing best practices

We have a JSF 2.0 project with heavy use of AJAX (provided by OpenFaces tag library). Our project is very cool and does many useful things, and we love it. However there is one thing about it that ...

1 2 3 4 5 65