JSF 2.0如何在Glassfish V3中使用Apache Myfaces
作者:互联网
我正在尝试将Myfaces与Glassfish一起使用,但无法正常工作.我已经确保myfaces-api和myfaces-impl是与我的应用程序一起部署的JSF运行时,但是Glassfish仍使用mojarra版本运行该应用程序.
我当时认为lib文件夹中的类将取代应用程序服务器中的类.
如果从glassfish的modules文件夹中删除jsf-api和jsf-impl,启动时会出现错误,并带有一些OSGI噪声.
使用myfaces来与glassfish一起部署的Ann应用程序的推荐方式是什么?
解决方法:
好,知道了.
通过在glassfish-web.xml中声明此问题来解决
<glassfish-web-app error-url="">
<class-loader delegate="false"/>
<property name="useBundledJsf" value="true"/>
</glassfish-web-app>
标签:jsf-2,glassfish-3,java 来源: https://codeday.me/bug/20191208/2088531.html