ognl.OgnlException: target is null for setProperty 错误解决办法

	at java.lang.Thread.run(Thread.java:619)
InstantiatingNullHandler - Entering nullPropertyValue [target=[com.yuxuan.prj.sg.action.CustfeeAction@1ee4dbe, com.opensymphony.xwork2.DefaultTextProvider@1b5e16d], property=custfeeLog]
OgnlValueStack - Error setting value
ognl.OgnlException: target is null for setProperty(null, "thisMonthRate", [Ljava.lang.String;@1ac8e09)
	at ognl.OgnlRuntime.setProperty(OgnlRuntime.java:1651)
	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.util.OgnlUtil.setValue(OgnlUtil.java:186)

 出错信息如上,网上找了大堆的资料都是说

   CustfeeAction 没有 thisMonthRate 相关的get ,set 方法导致的。

CustfeeAction 明明有 get ,set 方法,

百思不得其解:

 

[target=[com.yuxuan.prj.sg.action.CustfeeAction@1ee4dbe, com.opensymphony.xwork2.DefaultTextProvider@1b5e16d], property=custfeeLog

 

 

研究了上面的错误信息 出错信息里使用了

 property=custfeeLog

 


你可能感兴趣的:(java,thread)