struts2框架搭建學習遇到的問題

wangyy發表於2013-09-12

遇到的兩個問題

1Dispatcher initialization failed:

嚴重: Dispatcher initialization failed java.lang.RuntimeException: java.lang.reflect.InvocationTargetException處理方法:

1、核對lib包commons-fileupload-1.2.1.jar,commons-io-1.3.2.jar commons-logging-1.0.4.jar freemarker-2.3.16.jar ognl-3.0.jar struts2-core-2.2.1.jar xwork-core-2.2.1.jar注意2.1以前是沒有commons-fileupload-1.2.1.jar,

2、如果struts2版本是2.1以前web.xml配置過濾器的時候應該是這樣: indexstruts2               org.apache.struts2.dispatcher.FilterDispatcher           struts2/*如果struts2 版本是2.1以上web.xml配置 index.jspstruts2org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilterstruts2/*

3、 在使用struts-2.2.1時,需要引入javassist-3.7.ga.jar,而這個在struts-2.2.1\lib下是沒有的,需要在struts-2.2.1\apps\struts2-blank-2.2.1.war下的lib中找。

 

我的專案中缺少commons-io-1.3.2.jar  和javassist-3.7.ga.jar包 ,將這兩個包新增上就不再出現這個問題了

但是又出現了一個新的問題

NoClassDefFoundError: org/apache/commons/lang3/StringUtils。。。

Caused by: java.lang.ClassNotFoundException: org.apache.commons.lang3.StringUtils。。。

新增commons-lang3-3.1.jar包,注意不是缺少commons-lang-2.4.jar造成的,而是commons-lang3-xx.jar造成的,第一次我新增了commons-lang-2.4.jar還是出現同樣的問題,又仔細看了看錯誤明明是 xxx.commons.lang3.xxx,所以新增一個commons-lang3包就OK了

 

這些問題都修改好了之後,在Struts.xml中新增了Action的配置,配置之後就出現了一下問題:

Dispatcher initialization failed
Unable to load configuration. - action - file:/E:/lewan/project/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/Struts2Demo/WEB-INF/classes/struts.xml:12:58

.....

Caused by: Action class [com.lw.struts.LoginAction] not found - action - file:/E:/lewan/project/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/Struts2Demo/WEB-INF/classes/struts.xml:12:58

 

新增了一個包之後又出現 了

Unable to load configuration. - bean - jar:file:/E:/lewan/project/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/Struts2Demo/WEB-INF/lib/struts2-spring-plugin-2.3.15.1.jar!/struts-plugin.xml:29:132
 at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:70)

。。。。Caused by: Unable to load bean: type:com.opensymphony.xwork2.ObjectFactory class:org.apache.struts2.spring.StrutsSpringObjectFactory - bean - jar:file:/E:/lewan/project/.metadata/.plugins/org.eclipse.wst.server.core/tmp2/wtpwebapps/Struts2Demo/WEB-INF/lib/struts2-spring-plugin-2.3.15.1.jar!/struts-plugin.xml:29:132

 

Caused by: java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContextAware

。。新增spring相關的包

 IOException parsing XML document from ServletContext resource [/WEB-INF/applicationContext.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/applicationContext.xml]

webml中新增 <context-param> 
    <param-name>contextConfigLocation </param-name> 
    <param-value>/WEB-INF/classes/applicationContext.xml </param-value>
    </context-param>

 

 

 

 

 

 

 

相關文章