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 に関しては、これが構成です。ネットで提案されているように、私も何度か変更したjarの非常に線形バージョンのようですが、十分ではありませんでした

<?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 のバージョン間の競合を示しています。

jar を手動でダウンロードする代わりに、Maven を使用することをお勧めします。jar の欠落、競合などに関する多くの問題は、Maven によって解決されます。

于 2014-10-20T13:10:44.453 に答える