struts2 错误集

最近看struts2...居然配置struts2出错了...囧,没辙,记忆不好专门写一个博文来记住这些错误吧。。。。

1.
java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils
导致这个原因肯定是jar包没有添加上,把该需要的jar写下来吧
commons-fileupload-x.x.x.jar
commons-io-x.x.x.jar
commons-lang-x.x.jar
commons-logging-x.x.x.jar
freemarker-x.x.x.jar
javassist-x.x.x.GA.jar
ognl-x.x.x.jar
struts2-core-x.x.x.x.jar
xwork-core-x.x.x.x.jar

2.在struts2.2.3中如果页面上传递的值的类型和封装好的变量类型不一致,页面上依旧会正常显示,但是控制台会抛出ognl.MethodFailedException
截取的部分错误信息
警告: Error setting expression 'age' with value '[Ljava.lang.String;@a7315c'
ognl.MethodFailedException: Method "setAge" failed for object com.struts2.LoginAction@1b6d56 [java.lang.NoSuchMethodException: com.struts2.LoginAction.setAge([Ljava.lang.String;)]
这个时候找到对应的变量进行修改即可

你可能感兴趣的:(struts2)