Dispatcher initialization failed。。等错误 解决方案 一般导入七个包就行了
http://blog.csdn.net/helifengwell/article/details/5855144
一般在struts 2.2.1 上面的就能够解决了。但是我的struts 是struts 2.2.3。会要导入九个包。
多出来的分别是: commons-lang3-3.1.jar和javassist-3.11.0.GA.jar
我的环境是:eclipse+tomcat7+jdk7
1.
严重: Exception starting filter struts2
java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
2.
严重: Dispatcher initialization failed
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
缺少包: javassist-3.11.0.GA.jar
3. 严重: Could not create JarEntryRevision for [jar:file:/D:/application/apache-tomcat-6.0.30/webapps/SSH1/WEB-INF/lib/struts2-core-2.3.4.jar]!
java.lang.NoClassDefFoundError: org/apache/commons/io/FileUtils
缺少包: commons-io-2.0.1.jar
4.
严重: Exception starting filter struts2
java.lang.NoClassDefFoundError: org/apache/commons/lang3/StringUtils
缺少包: commons-lang3-3.1.jar
XML配置详解:http://blog.csdn.net/zz_mm/article/details/5460397
在采用动态action的时候。总是提示找不到action
搞了我两天。
struts.xml配置没有问题
并且是放在src根目录下。
web.xml也没有问题
action里面也有getter和sertter方法。但是就是提示找不到action。后台tomcat没有给出任何提示。
最后只剩调试了下,添加了action的namespace属性 后提示
There is no Action mapped for namespace [/] and action name [UserAction] associated with context path [/instance882].
当我重新删除namespace属性的时候 重新发布 又可以了 能够找到action了 怎么解释。没找着原因,先放这儿,以后解决了再来修改