0

我正在尝试使用 struts2 + jboss 4.2.1 配置一个项目。我已经做了很多测试和试验,我已经阅读了很多,但我无法让它工作。

我想创建一个简单的页面索引。我尝试更改各种库以在 Jboss 中设置类路径库,但没有。总是同样的错误:

SEVERE: Dispatcher initialization failed
Unable to load configuration. - Bean - jar:

WebContent/WEB-INF/lib/struts2-core-2.1.8.1.jar! / Struts-default.xml: 85:158
com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration

使用库

common-lang3.jar
commons-beanutils-1.7.0.jar
commons-chain-1.2.jar
commons-fileupload-1.2.1.jar
commons-io-1.3.2.jar
commons-logging-1.1.1.jar
commons-validator.jar
freemarker-2.3.19.jar
javassist.jar
ognl-2.6.11.jar
servlet-api-6.0.29.jar
struts2-core-2.1.8.1.jar
xwork-2.1.3.jar
xwork-core-2.2.1.jar

在 web.xml 文件中,我添加了带有 struts2 配置的标签,我尝试了与 tomcat 完全相同的项目,并且没有问题。我还尝试将项目中的库放在 jboss 中,但没有任何改变!

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>ViaProva</display-name>


 <filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>

  <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

至于struts.xml,这是配置。这一切似乎都是罐子的线性版本,我也按照网上的建议更改了几次,但这还不够

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <constant name="struts.devMode" value="true" />

    <package name="default" namespace="/" extends="struts-default">

        <action name="addCustomerAction" 
            class="it.niuma.via.action.CustomerAction" method="addCustomer" >
            <result name="success">pages/customer.jsp</result>
        </action>

        <action name="listCustomerAction" 
            class="it.niuma.via.action.CustomerAction" method="listCustomer" >
            <result name="success">pages/customer.jsp</result>
        </action>

    </package>

</struts>

有谁知道给我一些建议?

4

1 回答 1

0

通常,此错误消息是指 struts 的 jar 版本之间的冲突。

我建议您使用 Maven,而不是手动下载 jar。Maven 将解决有关 jar 丢失、冲突等的许多问题。

于 2014-10-20T13:10:44.453 回答