初次使用WebWork Error filterStart

初次使用WebWork Error filterStart
資訊: Installing web application at context path /testwebwork from URL file:D:\ExadelStudio\tomcat\webapps\testwebwork
2007/2/4 下午 05:00:39 org.apache.catalina.core.StandardContext start
嚴重的: Error filterStart
2007/2/4 下午 05:00:39 org.apache.catalina.core.StandardContext start
嚴重的: Context startup failed due to previous errors
-----------------------------------------------------------------------------
Web.xml文件如下
-----------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
 <filter>
  <filter-name>webwork</filter-name>
  <filter-class>
   com.opensymphony.webwork.dispatcher.FilterDispatcher
  </filter-class>
 </filter>
 <filter-mapping>
  <filter-name>webwork</filter-name>
  <url-pattern>/*</url-pattern>
 </filter-mapping>
.....
.....
</web-app>
-------------------------------------------------------------
原因:?
一般都是Jar包,問題。
Common....jar的版本問題等。Servlet版本問題。
這次的問題在於忘了把根目錄的webwork-2.2.2.jar拷到lib裏了,暈。
另  xwork-tiger.jar 是為JDK150做的。與xwork.jar不能共存。
-------------------------------------------------------------

你可能感兴趣的:(初次使用WebWork Error filterStart)