今天从云开发平台上生成的代码报Spring相关的错误。
我找到第一处错误,整理如下:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'kmBookDetailTarget' defined in ServletContext resource [/WEB-INF/KmssConfig/km/book/spring.xml]: Error setting property values;
nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'kmBookCategoryService' of bean class [com.landray.kmss.km.book.service.spring.KmBookDetailServiceImp]: Bean property 'kmBookCategoryService' is not writable or has an invalid setter method.
Does the parameter type of the setter match the return type of the getter?
首先翻译一遍:
创建定义在这个spring.xml文件里面,名为'kmBookDetailTarget'的bean时出错:设置属性值时出错;
嵌套异常为这个Exception:这个bean类的属性'kmBookCategoryService'无效:bean属性'kmBookCategoryService'是不可写或者有一个无效的setter方法。
setter的参数类型是否与getter的返回类型匹配?
然后确定了导致错误的起源在这个spring.xml文件,并且找到'kmBookDetailTarget'这个bean,然后找到这个bean里面的属性'kmBookCategoryService',如图:
bean每注入一个属性,我们都要在这个bean对应的class中定义setter方法,我们找到这个class,如图:
发现没有任何setter方法。其实baseDao这个属性应该是在框架中已经setter过了,即父类中定义了,而我们自定义的属性'kmBookCategoryService'并没有定义,因此才导致错误。
解决办法:
删掉该属性,如图:
clean项目,重新启动,OK!
------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------
那么如果我不删除spring配置,该如何做?
应该在对应的类里面添加setter方法,如图:
重新启动,欸~都挺好,也OK!
------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------
但如果,我就是要删除这个spring配置,但是以后我还是想要用这个属性怎么办?
我们可以通过另外一种办法使用:
SpringBeanUtil是我们封装的类,针对这个方法的代码如下:
private static ApplicationContext applicationContext = null;
public static Object getBean(String beanName) {
if (applicationContext == null)
return null;
return applicationContext.getBean(beanName);
}
好不好用测试才行,很不幸,我们框架没有单元测试(我自己也不会搞),于是我从前端写了一个ajax,然后到action层调service,最后在serviceImp调test方法测试。
结果测试可行!