load « Bean « JSF Q&A





1. Why the jsf view is not updated after new data in the backing bean are loaded from database?    stackoverflow.com

I am - unfortunally - working with jsf and I am experiencing a problem. I have a jsf page that displays a table with some data, using the <h:dataTable> component. Every row of ...

2. JSF + backing bean: How to detect when the application first load    stackoverflow.com

How do I do something like this
Inside JSF file, list.xhtml

 <p:dataTable value="#{document.drawings}" var="item">
     //document is the backing bean that has method getDrawings() that return list of item
 ...

3. Load Applicationscoped Bean with ServletContext    stackoverflow.com

I have created a class StartupListener implements ServletContextListener. Inside

@Override
public void contextInitialized(ServletContextEvent contextEvent) {
I create a timer which will be executed every 30 seconds. Inside this timer I want to set ...

4. jboss-as 7 class loading within a war with ApplicationScoped eager ManagedBean    stackoverflow.com

I have this kind of structure in my Maven project:

WEB-INF/lib
  - a.jar
       - Registry.class (@ApplicationScoped, @ManagedBean(eager=true)
  - b.jar
      ...

5. Backing Bean loaded Twice!?    coderanch.com

6. Problem loading managed bean    coderanch.com

8. Managed Bean not loaded    coderanch.com

9. NullPointerException when loading properties from XML in a managed bean?    coderanch.com

Good morning all. I ran into a problem yesterday afternoon and after a bunch of research and trying a couple of different things I'm stumped...and hope that someone may be able to provide some insight on what's going on. First, I'm using JSF ri 1.1, J2EE 1.4 and Java 5 in a Weblogic app server to build/run my web app. I ...