我有一个运行到 JBoss 4.2 中的 spring mvc 应用程序。我正在尝试将此 Web 应用程序迁移到 JBoss wildfly 10(wildfly-10.0.0.Final 版本)。
当我尝试部署我的应用程序时显示此错误:
"{\"WFLYCTL0080: Failed services\" => {\"jboss.deployment.unit.\\\"myApp.war\\\".POST_MODULE\" => \"org.jboss.msc.service.StartException in service jboss.deployment.unit.\\\"myApp.war\\\".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment \\\"myApp.war\\\"
Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class org.ajaxtags.tags.AjaxDisplayTag with ClassLoader ModuleClassLoader for Module \\\"deployment.myApp.war:main\\\" from Service Module Loader
Caused by: java.lang.NoClassDefFoundError: au/id/jericho/lib/html/Segment
Caused by: java.lang.ClassNotFoundException: au.id.jericho.lib.html.Segment from [Module \\\"deployment.myApp.war:main\\\" from Service Module Loader]\"}}"
寻找网络,我读到我需要加载jar“jericho-html-2.6.1.jar”。为此,我在 ${wildfly_home}/modules/system/layers/base/au/id/jericho/lib/html/main 添加了 jericho-html-2.6.1.jar 和这个 module.xml
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.1" name="au.id.jericho.lib.html">
<resources>
<resource-root path="jericho-html-2.6.1.jar"/>
</resources>
<dependencies>
</dependencies>
</module>
我在standalone.xml 中添加了扩展
<extension module="au.id.jericho.lib.html"/>
但我得到同样的错误。