1

これは私の最初の Struts 2 アプリケーションであり、このエラーが発生しました

"Application at context path `/HelloWorldStruts2` could not be started" 

Tomcat にデプロイする場合。

web.xml私のアプリケーションの:

<?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_3_0.xsd"
id="WebApp_ID" version="3.0">

<display-name>Struts 2</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
 org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>

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

struts.xml私のStrutsアプリケーションの:

<?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="helloworld" extends="struts-default">

<action name="hello" 
    class="com.tutorialspoint.struts2.HelloWorldAction" 
    method="execute">
    <result name="success">/HelloWorld.jsp</result>
</action>
</package>
</struts>
4

2 に答える 2

0

問題は web.xml スキーマのバージョンとフィルターにあると思います(他の人が述べたように)。これは私のために働く:

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

  <display-name>Struts 2</display-name>

   <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>


  <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>

</web-app>
于 2013-07-18T16:54:17.350 に答える
0

Web アプリケーションを Tomcat にデプロイすると、Tomcat は、デプロイ時に指定されたアプリケーション コンテキストを作成しようとします。web.xml. Web アプリケーションにエラーがある場合、アプリケーションが開始されず、コンテキストが作成されない可能性があります。これらのエラーを解決して、アプリケーションを再デプロイする必要があります。非推奨の API を使用する誤った構成、間違ったライブラリ バージョンと一貫性のない依存関係、その他のサーバーの問題がある可能性があります。何が起こったのか、アプリケーションが開始されない理由を説明するのは困難です。ただし、完全なスタック トレースを提供するプロジェクト構成は、問題のさらなるトラブルシューティングに役立つ場合があります。以下は、プロジェクトコードにある他の問題の解決策です。これは、存在しないか、既に解決されている可能性がありますが、投稿されたコードには表示されていません。/HelloWorldStruts2これは、このコンテキストが webapp に登録された後、コンテキストで ブラウザーで Web アプリケーションを開始するのに役立ちます。

index.jsp配置する必要があります

<% response.sendRedirect("hello.action"); %>
于 2013-07-12T12:37:37.137 に答える