Environment:
- Wildfly 22
- Java 11
- JSF 2.3
I am trying to inject a ManagedProperty in a bean and I getting a NullPointerExcepion but I don't know exactly why is that. Something missing?
Error log
21:35:25,994 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-8) Error Rendering View[/index.xhtml]: java.lang.NullPointerException
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.evaluateExpressionGet(ManagedPropertyProducer.java:87)
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.lambda$new$0(ManagedPropertyProducer.java:60)
at [email protected]//com.sun.faces.cdi.CdiProducer.create(CdiProducer.java:105)
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.create(ManagedPropertyProducer.java:38)
at [email protected]//org.jboss.weld.contexts.unbound.DependentContextImpl.get(DependentContextImpl.java:64)
...
21:35:26,001 ERROR [io.undertow.request] (default task-8) UT005023: Exception handling request to /roscam/index.xhtml: javax.servlet.ServletException
at [email protected]//javax.faces.webapp.FacesServlet.executeLifecyle(FacesServlet.java:725)
at [email protected]//javax.faces.webapp.FacesServlet.service(FacesServlet.java:451)
at [email protected]//io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)
...
Caused by: java.lang.NullPointerException
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.evaluateExpressionGet(ManagedPropertyProducer.java:87)
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.lambda$new$0(ManagedPropertyProducer.java:60)
at [email protected]//com.sun.faces.cdi.CdiProducer.create(CdiProducer.java:105)
at [email protected]//com.sun.faces.cdi.ManagedPropertyProducer.create(ManagedPropertyProducer.java:38)
...
... 57 more
SessionBean
@Named
@SessionScoped
public class SessionBean implements Serializable {
...
@Inject
@ManagedProperty(value = "#{localeBean}")
private LocaleBean localeB;//Error injecting bean NullPointerException
...
@PostConstruct
public void init() {
...
LocaleBean
@Named
@SessionScoped
public class LocaleBean implements Serializable {
@PostConstruct
public void init() {
...
index.xhtml
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
</h:head>
<h:body>
<f:view locale="#{localeBean.locale}">
hi there
#{sessionBean.doNothing}
</f:view>
</h:body>
</html>
pom.xml
...
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>8.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>10.0.0</version>
</dependency>
...
As of jakartaee 8 ManagedProperty has been deprecated as we can see in its api.
So it is no loger needed to use @ManagedProperty with @Injecton.