我有一个在 intellij IDEA 中使用 CDI、JSF、BeanValidation、Servlet-api 的小型 Java EE 项目。我的服务器是 glassfish 5.0.0,我读到它实现了 servlet 4.0、cdi 2.0、jsf 2.3 和 bean 验证 2.0。
我有以下xml配置:
1.web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<!--Configurations-->
</web-app>
2.faces-config.xml:
<faces-config version="2.2" xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd">
</faces-config>
3.beans.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_2_0.xsd">
</beans>
现在一切都很好,但是当我尝试将 servlet 3.1 更改为 servlet 4.0,将 jsf 2.2 更改为 jsf 2.3 时,我使用表达式语言的所有 jsf 页面都不起作用,例如<h:commandButton action='#{bean.doSomething}' />
不触发事件
我做错了什么?对不起我的英语不好。
更新。
我将我的项目移动到 maven,重新更新了所有库,一切正常,所以我认为问题出在错误的配置或库中。