`
- 浏览:
34524 次
- 性别:
- 来自:
深圳
-
org.springframework.beans.NotWritablePropertyException
组合sping和struts action注入的时候,发生了 org.springframework.beans.NotWritablePropertyException: Invalid property...错误,这是我用属性注入时发生的错误,后来改用构造注入就没这个问题,那为什么会出现这种情况,分析了一下,查了一些网络资料后,发现别人这么说:
1、据本人所知,第一个字母是小写,而第二个字母是大写的属性,它的get和set方法名字不是get+属性第一个字母大写。例如iTestDao的set方法不是setITestDao,可能是setItestDao。所以不建议使用第一个字母是小写,而第二个字母是大写的属性。
2、spring默认命名方式不能以双大写字母开头。。。。
3、在依赖注入的时候的问题,把属性名改成全部小写试一下
这下你的问题可以解决了吧
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'error_view' of bean class [com.demo.controller.action.AuthorAction]: Bean property 'error_view' is not ...
nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'transactionManagerBeanName' of bean class [org.springframework.transaction.interceptor....
Dubbo管理控制台(兼容JDK8)
大家可以直接使用 Caused by: org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property ...
org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType' is not writable ...
如果是在JDK8下跑,会报错: org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean ...
org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType' is not writable ...
org.springframework.beans.NotWritablePropertyException: Invalid property 'URIType' of bean class [com.alibaba.citrus.service.uribroker.uri.GenericURIBroker]: Bean property 'URIType' is not writable or...
nested exception is org.springframework.beans.NotWritablePropertyException` 此类错误通常发生在尝试设置一个不可写的属性值时。具体而言,当Spring容器试图通过setter方法将一个bean注入到另一个bean中时,...