无法启动上下文路径/ HelloWorldStruts2中的应用程序

时间:2013-07-12 12:17:57

标签: java xml tomcat struts2 struts

这是我的第一个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>

2 个答案:

答案 0 :(得分:0)

将Web应用程序部署到tomcat时,它将在处理web.xml后尝试创建部署期间指定的应用程序上下文。如果Web应用程序中存在错误,则可能无法启动并且未创建上下文。您需要解决这些错误并重新部署您的应用程序。您可能有错误的配置,使用不推荐的API,错误的库版本和不一致的依赖项,其他服务器问题。很难告诉你发生了什么以及为什么你的应用程序没有启动。但是提供完整的堆栈跟踪,项目配置可能有助于进一步解决问题。以下是项目代码中另一个问题的解决方案,该问题可能不存在或已经解决,但未在您的代码中显示。这有助于在向webapp注册此上下文后,在上下文/HelloWorldStruts2中在浏览器中启动Web应用程序。

index.jsp你应该放置

<% response.sendRedirect("hello.action"); %>

答案 1 :(得分: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>