I'am using facelets. I have one class (no managed bean):
package User;
public class User {
public static String getHello() {
return "Hello";
}
}
This is my bean class:
import User;
// various imports
public class IncidenciaBean {
private String navegator;
// ..... various String atributes
public IncidenciaBean () {
}
public Navigator getNavigator() {
return navigator;
}
public void setNavigator (Navigator navigator) {
this.navigator = navigator;
}
// ....... getters and setters
public String doBid() {
String hello = User.getHello(); // --> BOOM, javax.servlet.ServletException: Error calling action method of component with id _idJsp0:_idJsp17
javax.faces.webapp.FacesServlet.service(FacesServlet.java:154)
}
}
This is my faces-config.xml file:
<faces-config>
<managed-bean>
<managed-bean-name>incidencia</managed-bean-name>
<managed-bean-class>com.notifica.pages.IncidenciaBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<navigation-rule>
<from-view-id>/formularioNotifica.jsp</from-view-id>
<navigation-case>
<from-outcome>success</from-outcome>
<to-view-id>/WEB-INF/results/resultados.jsp</to-view-id>
</navigation-case>
</navigation-rule>
</faces-config>
Finnaly, my jsp:
<f:view>
<h:form>
<BODY>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<h:inputText value="#{incidencia.navegator}" size="75" />
.............
<h:commandButton value="Enviar" action="#{incidencia.doBid}" />
<h:commandButton value="Restablecer" type="reset" />
</h:form>
</BODY>
</HTML>
</f:view>
How do I access this on my JSF page because Class User is a simple POJO not a managed bean?
Thanks in avance!!
ServletExceptionis not interesting. You need to read the root cause down into the stacktrace. It'll tell about the root cause of the problem. If you don't understand it, edit your question to include the entire stacktrace. By the way, your import is wrong, but it would have resulted in a compilation error rather than a runtime error, so I assume it to be just a careless typo/edit. – BalusC Aug 16 '11 at 12:26