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. Information to provide when asking JSF ...

learn more… | top users | synonyms

15
votes
2answers
10k 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. ...
72
votes
5answers
22k 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)?
28
votes
6answers
10k 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 ...
51
votes
5answers
8k 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 ...
17
votes
2answers
6k 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, ...
35
votes
4answers
15k 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 ...
2
votes
3answers
4k views

JSTL in JSF2 Facelets… makes sense?

I would like to output a bit of XHTML 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 this is a ...
18
votes
1answer
4k 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 ...
15
votes
5answers
3k 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 ...
6
votes
2answers
16k 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.
6
votes
2answers
556 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?
14
votes
3answers
16k 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 ...
2
votes
1answer
2k views

JSF 2.0 method invocation

Invoking methods using EL Expression: Can I get the size of a list using an EL Expression? e.g. <h:outputText value="#{myList.size()}" /> This doesnt seem to work.
41
votes
3answers
34k 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 ...
17
votes
5answers
4k 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 ...
6
votes
1answer
3k 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?
8
votes
2answers
7k 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 ...
5
votes
4answers
11k views

JSF 2.0 File upload

I am looking around a few blogs, to try to find how to upload files ussing 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
2answers
2k views

Difference between JSP EL, JSF EL and Unified EL

HI, 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 is the latest ...
13
votes
3answers
5k views

JSF implementations and component libraries

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 ...
22
votes
4answers
6k 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 ...
15
votes
1answer
3k 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 ...
6
votes
1answer
659 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 ...
1
vote
1answer
442 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 ...
15
votes
2answers
20k 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 ...
5
votes
2answers
2k 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
1answer
606 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 ...
8
votes
3answers
5k 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
2answers
2k views

What components are MVC in JSF MVC framework?

In JSF MVC framework who is Model, View, and Controller?
10
votes
3answers
1k views

Is it safe to start a new thread in a JSF managed bean?

I could not find a definitive answer to whether it is safe to spawn threads within session-scoped JSF managed beans. The thread needs to call methods on the stateless EJB instance (that was ...
2
votes
1answer
2k 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 ...
2
votes
4answers
1k views

Java Framework Choice Question

We do have many frameworks available in Java. Struts, Swing, JSF 2.0, Spring etc are used as per their priority. Actually, I don't know how many they are as well! But, as I am fresher to Java, even ...
6
votes
1answer
4k 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>
14
votes
5answers
3k views

Spring session-scoped beans (controllers) and references to services, in terms of serialization

a standard case - you have a controller (@Controller) with @Scope("session"). classes put in the session usually are expected to implement Serializable so that they can be stored physically in case ...
9
votes
1answer
3k 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 ...
4
votes
2answers
12k views

How to use JSF's h:selectBooleanCheckbox with h:dataTable to create one object per row?

I have a Facelets page with a h:dataTable. In each row of the h:dataTable there is a h:selectBooleanCheckbox. If the checkbox is selected a new Object should be created with the data out of the ...
2
votes
2answers
922 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 ...
2
votes
1answer
323 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 ...
45
votes
18answers
19k views

Java EE 6 vs. Spring 3 stack [closed]

I'm starting a new project now. I have to choose technologies. I need something light, so no EJB or Seam. On the other hand I need JPA (Hibernate or alternative) and JSF with IceFaces. Do you think ...
7
votes
2answers
3k 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 ...
18
votes
4answers
19k views

Eclipse autocomplete (content assist) with facelets (jsf) and xhtml

How to activate eclipse (3.5, WTP) content assist in .xhtml pages for JSF (1.2) tags, using facelets? It works in .jsp files, but not xhtml. I google a lot, and in many places (including MyFaces ...
5
votes
2answers
1k views

When to move from Container managed security to alternatives like Apache Shiro, Spring Security?

I am trying to secure my application which is built using JSF2.0. I am confused about when do people choose to go with security alternatives like Shiro, Spring Security or owasp's esapi leaving ...
6
votes
3answers
7k views

h:inputText return a empty string instead of NULL

i make a JSF 2.0 Application and i use many h:inputText fields to input data in my database. Some fields are not required <h:inputText value="#{registerBean.user.phoneNumber}" id="phoneNumber" ...
5
votes
1answer
4k 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: ...
1
vote
2answers
2k 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 ...
1
vote
3answers
250 views

@Inject to pass params to a CDI @Named bean via URL gives Jboss error on Netbeans

This is very alien, so I'm trying to understand what's happening as much as possible. It looks like there's a missing dependancy, however that seems unlikely. I'm on Glassfish, but the errors ...
1
vote
1answer
2k views

Facelets and JSTL (Converting a Date to a String for use in a field)

I need to convert a Date to a String within a page (I dont want to add loads of toStrings to my domain model so adding to the bean is not an option). <ice:graphicImage value="bean.image" ...
9
votes
1answer
927 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." ...
5
votes
1answer
3k views

JSF 2 and Post/Redirect/Get?

Please correct me if I'm wrong, but I'm thinking of all of my non-AJAX submits should use the Post/Redirect/Get (PRG) way, since GET should be used to refresh/query data, and in my case, the ...
8
votes
2answers
2k 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 ...

1 2 3 4 5 49