尝试在Wildfly 13中加载jsf页面(xhtml)文件时遇到问题。 xhtml中使用的表达式不评估,也不作为文本显示在呈现的页面中。 faces-config文件中的Servlet 2.5和JSF版本的声明为我的web.xml。
我在我的jboss-deployment-structure中添加了默认jsf模块的排除项。而且我想问题出在运行时未加载的jsf-facelets jar中。
web.xml文件如下: http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd“ id =” WebApp_ID“ version =” 2.5“>
jboss-deployment-structure.xml:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<exclude-subsystems>
<subsystem name="jsf"/>
</exclude-subsystems>
<exclusions>
<module name="javax.faces.api"/>
<module name="com.sun.jsf-impl"/>
</exclusions>
<dependencies>
<module name="deployment.<internal ear>" export="true" />
</dependencies>