当前位置: 代码迷 >> Java Web开发 >> Tomcat起动 The requested resource (/Struts2/) is not available
  详细解决方案

Tomcat起动 The requested resource (/Struts2/) is not available

热度:11462   发布时间:2013-02-25 21:15:30.0
Tomcat启动 The requested resource (/Struts2/) is not available.
我配置SSH2框架。。启动tomcat一切正常。。http://localhost:8080/也正常显示。。
只是加入项目后就总显示The requested resource (/Struts2/) is not available.了。。。

我已经在C:\Tomcat 5.5\conf\Catalina\localhost下添加了部署文件:
<?xml version="1.0" encoding="utf-8" ?> 
  <Context path="/Struts2" docBase="C:\Documents and Settings\admin\workspace\Struts2\WebRoot" debug="0" privileged="true" /> 

我写过测试文件。。SSH框架应该算是OK的。。

这个是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_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Struts2</display-name>
<welcome-file-list>
<welcome-file>index</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>

<display-name>Struts2</display-name>

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

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>

<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>
 
<listener>
  <listener-class>
  org.springframework.web.context.ContextLoaderListener
  </listener-class> 
  </listener> 

</web-app>

请问大侠我应该是哪里出错了呢。。


------解决方案--------------------------------------------------------
<Context path="/Struts2" docBase="C:\Documents and Settings\admin\workspace\Struts2\WebRoot" debug="0" privileged="true" /> 这个路径 你在检查检查
------解决方案--------------------------------------------------------
<display-name>Struts2</display-name>
<welcome-file-list>
<welcome-file>index</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>

<display-name>Struts2</display-name>

这一段删了
------解决方案--------------------------------------------------------
建议把Context节点的信息,写到 TOMCAT_HOME\conf\server.xml 中去。

另外:Tomcat启动的时候,没有任何 警告 信息么?密切关注下。
  相关解决方案