Application at context path /×× could not be started
Tomcat部署:
webapps
-test
-WEB-INF
-classes
-HelloWorld.class
-lib
-...jar
-web.xml
-struts.xml
-SayHello.jsp
-HelloWord.jsp
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>test</display-name>
<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>
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
</web-app>
另:
进入http://localhost:8080/发现test无法启动,报错FAIL - Application at context path /test could not be started
末了:以前曾经这样部署过struts工程,也成功了,好长时间没玩了,这次不知怎么回事?望各位大侠指点,谢了