Search Results

0
votes
3answers
347 views

JSF vs Flex

I want to settle on a GUI framework, and use AJAX, as simply as possible. Assuming adequate skills in both JSF and Flex, but not too skilled at AJAX/javascript, and assuming Java as the language fo …
1
vote
1answer
272 views

ICEFaces action vs actionListener

I am not clear on the difference between these two methods. I see that the actionListener takes an ActionEvent as a parameter, but both may be tied to a method in the backing bean. Is the …
0
votes
1answer
76 views

Spring and JSF and JPA

I'm integrating these in a basic web application, being deployed in Glassfish. Upon startup, the error I am getting is: nested exception is java.lang.NoSuchMethodError: org.objectwe …
0
votes
1answer
123 views

Calling EJB3 from a Faces BackingBean

I have a simple web application, packed as an EAR, deployed on Glassfish. The EAR has a web module and an EJB module. The web module has a faces page, and a ManagedBean. The Faces page only has a b …
0
votes
4answers
230 views

Faces Backing Bean initializing

I have a backing bean, and I'd like to load up a few lists when the bean is instantiated, so that the list may be used in a dropdown. Is there a method that only gets called when the bean i …
0
votes
1answer
49 views

Basic cache question

Say I have a JSF backing bean, request scope, that has a List as a member. In the backing bean, I have a method that is bound to a button on the page. When the button is first pressed, the …