1. 程式人生 > >ognl MethodFailedException Method setXX failed for object

ognl MethodFailedException Method setXX failed for object

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

由於資料型別不匹配而導致的異常

[java] view plain copy print ?
  1. ognl.MethodFailedException: Method 
    "setId" failed for object cn.xyurp.system.bean.DomainValue@1a6d030 [java.lang.NoSuchMethodException: setId([Ljava.lang.String;)]  
  2.  at ognl.OgnlRuntime.callAppropriateMethod(OgnlRuntime.java:823)  
  3.  at ognl.OgnlRuntime.setMethodValue(OgnlRuntime.java:964
    )  
  4.  at ognl.ObjectPropertyAccessor.setPossibleProperty(ObjectPropertyAccessor.java:75)  
  5.  at ognl.ObjectPropertyAccessor.setProperty(ObjectPropertyAccessor.java:131)  
  6.  at com.opensymphony.xwork2.ognl.accessor.ObjectAccessor.setProperty(ObjectAccessor.java:28
    )  
  7.  at ognl.OgnlRuntime.setProperty(OgnlRuntime.java:1656)  
  8.  at ognl.ASTProperty.setValueBody(ASTProperty.java:101)  
  9.  at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:177)  
  10.  at ognl.SimpleNode.setValue(SimpleNode.java:246)  
  11.  at ognl.ASTChain.setValueBody(ASTChain.java:172)  
  12.  at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:177)  
  13.  at ognl.SimpleNode.setValue(SimpleNode.java:246)  
  14.  at ognl.Ognl.setValue(Ognl.java:476)  
  15.  at com.opensymphony.xwork2.ognl.OgnlUtil.setValue(OgnlUtil.java:198)  
ognl.MethodFailedException: Method "setId" failed for object [email protected] [java.lang.NoSuchMethodException: setId([Ljava.lang.String;)] at ognl.OgnlRuntime.callAppropriateMethod(OgnlRuntime.java:823) at ognl.OgnlRuntime.setMethodValue(OgnlRuntime.java:964) at ognl.ObjectPropertyAccessor.setPossibleProperty(ObjectPropertyAccessor.java:75) at ognl.ObjectPropertyAccessor.setProperty(ObjectPropertyAccessor.java:131) at com.opensymphony.xwork2.ognl.accessor.ObjectAccessor.setProperty(ObjectAccessor.java:28) at ognl.OgnlRuntime.setProperty(OgnlRuntime.java:1656) at ognl.ASTProperty.setValueBody(ASTProperty.java:101) at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:177) at ognl.SimpleNode.setValue(SimpleNode.java:246) at ognl.ASTChain.setValueBody(ASTChain.java:172) at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:177) at ognl.SimpleNode.setValue(SimpleNode.java:246) at ognl.Ognl.setValue(Ognl.java:476) at com.opensymphony.xwork2.ognl.OgnlUtil.setValue(OgnlUtil.java:198)

 

可以debug 通過檢視 ognl.Ognl.java 類中的setValue()原始碼 查詢問題

 

[java] view plain copy print ?
  1.   public static void setValue( Object tree, Map context, Object root, Object value )     throws OgnlException  
  2.     {  
  3.         OgnlContext ognlContext = (OgnlContext)addDefaultContext(root, context);  
  4.         Node n = (Node) tree;  
  5.   
  6.         n.setValue( ognlContext, root, value );  
  7.     }  
  8.   
  9. // n 既是 JSP頁面 form 表單中的 input 元素  的name 屬性  
  10.   
  11. 比如 <input name="user.username" value="123"/>    
  12.   
  13. 然後在 ognl 中 通過action 中的 setter 方法  
  14.   
  15. 將呼叫 ognl.Ognl.java 中的 上述方法:  
  16.   
  17. n ==>   user.username  
  18.   
  19. value ==> 123  
  public static void setValue( Object tree, Map context, Object root, Object value )     throws OgnlException    {        OgnlContext ognlContext = (OgnlContext)addDefaultContext(root, context);        Node n = (Node) tree;        n.setValue( ognlContext, root, value );    }// n 既是 JSP頁面 form 表單中的 input 元素  的name 屬性比如 <input name="user.username" value="123"/>  然後在 ognl 中 通過action 中的 setter 方法將呼叫 ognl.Ognl.java 中的 上述方法:n ==>   user.usernamevalue ==> 123

 

           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述