在glassfish 5 build 25中,CDI bean导致javax.el.PropertyNotFoundException
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在glassfish 5 build 25中,CDI bean导致javax.el.PropertyNotFoundException相关的知识,希望对你有一定的参考价值。
我使用Java 8,glassfish 5 build 25,Eclipse。我正在尝试从Java EE 7升级到Java EE 8.所以我从这个简单的例子开始。
Veb.hml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
id="WebApp_ID" version="4.0">
<display-name>Play ID</display-name>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
CDI Bean:
@Named
@ViewScoped
public class CommentFront implements Serializable {
private static final long serialVersionUID = 1L;
public void addComment() {
System.out.println("I don’t work: ");
}
}
简单的JSF页面comment.xhtml
<!DOCTYPE html >
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
>
<h:head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Derbyware</title>
<h:body>
<h:form id="form">
<h:commandButton id="OneBtn" value="1 Comment" action="#{commentFront.addComment()}" >
</h:commandButton>
</h:form>
</h:body>
</h:head>
</html>
错误:
javax.el.PropertyNotFoundException: /comment.xhtml @17,89 action="#{commentFront.addComment()}": Target Unreachable, identifier 'commentFront' resolved to null
当我第一次开始glassfish它打印:
2018-10-31T14:26:57.985+0000|Info: WELD-000411: Observer method [BackedAnnotatedMethod] public org.glassfish.jms.injection.JMSCDIExtension.processAnnotatedType(@Observes ProcessAnnotatedType<T>) receives events for all annotated types. Consider restricting events using @WithAnnotations or a generic type with bounds.
2018-10-31T14:26:58.032+0000|WARN: WELD-000146: BeforeBeanDiscovery.addAnnotatedType(AnnotatedType<?>) used for class org.glassfish.cdi.transaction.TransactionalInterceptorMandatory is deprecated from CDI 1.1!
...
2018-10-31T14:26:58.048+0000|WARN: WELD-000146: BeforeBeanDiscovery.addAnnotatedType(AnnotatedType<?>) used for class org.glassfish.jersey.ext.cdi1x.transaction.internal.TransactionalExceptionMapper is deprecated from CDI 1.1!
2018-10-31T14:26:58.282+0000|Info: Initializing Soteria 1.0 for context '/Play_ID'
2018-10-31T14:26:58.282+0000|Info: Initializing Mojarra 2.3.2 ( 20170627-2139 e63598abf2ed2bb1a24674f308a734e0dce18a72) for context '/Play_ID'
2018-10-31T14:26:58.829+0000|Info: Loading application [Play_ID] at [/Play_ID]
2018-10-31T14:26:58.938+0000|Info: Play_ID was successfully deployed in 1,932 milliseconds.
为什么像这样简单的东西不适用于glassfish 5 ????
答案
解决方案1:
import javax.enterprise.context.ApplicationScoped;
import javax.faces.annotation.FacesConfig;
@ApplicationScoped
@FacesConfig(version = FacesConfig.Version.JSF_2_3)
public class JSFActivator {
}
现在一切正常。
解决方案2:
切换到Payara 5.183,它开箱即用。无需解决方案1
意见:为什么地狱玻璃鱼这个坏了。令人遗憾的是,Java EE 8的参考实现应用程序服务器在如此简单的工作中失败了。我希望这个chane现在已经从Oracle转向Eclipse。
我想我会切换到Payara,直到glassfish被修复。
以上是关于在glassfish 5 build 25中,CDI bean导致javax.el.PropertyNotFoundException的主要内容,如果未能解决你的问题,请参考以下文章
在 Glassfish 服务器 5.0 中部署 ADF1.2.2.1.4 时出现异常
Glassfish 4.1 + Hibernate 5.2 连接
在Glassfish 5.0中部署ADF WEbapp时出错