I'm currently facing challenges migrating my JSF 2.2 Maven web application from JDK 8 to Java 11. My goal is to maintain the use of Javax packages without refactoring to Jakarta.
After resolving several build and deployment issues, the application successfully deployed on WildFly 19. However, upon the first interaction, I encountered the following error:
Caused by: javax.el.PropertyNotFoundException: Target Unreachable, identifier 'XXXMBean' resolved to null at [email protected]//com.sun.el.parser.AstValue.getTarget(AstValue.java:148) at [email protected]//com.sun.el.parser.AstValue.getType(AstValue.java:62) at [email protected]//com.sun.el.ValueExpressionImpl.getType(ValueExpressionImpl.java:160) at [email protected]//org.jboss.weld.module.web.el.WeldValueExpression.getType(WeldValueExpression.java:93)
Given this context, I have two questions:
Thank you for any insights!