ognl.NoSuchPropertyException(没有对应属性异常)
警告: Error setting expression 'user.username' with value '[Ljava.lang.String;@6dc63791'
ognl.NoSuchPropertyException: com.shengxian.entity.User.username
异常原因:
账号:<input type="text" name="user.username"/></br>
我在表单中给一个对象的username属性赋值,但是它没有这个属性,属性名写错了,应该为name,但是页面能继续执行跳转。
解决办法:
把jsp中错误的属性名改成正确的程序运行正常
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
No result defined for action com.shengxian.action.LoginAction and result
异常原因:
页面中:
HTTP Status 404 - No result defined for action com.shengxian.action.LoginAction and result
Action中返回一个字符串,但是在xml中没有规定这个字符串要跳转的页面或action
解决办法:
在xml中写关于这个跳转对应的result的name值和跳转内容