首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

ssh搭建有关问题,请教这是什么错误,小弟我在学习实在找不出来了

2013-09-11 
ssh搭建问题,请问这是什么异常,我在学习实在找不出来了org.springframework.beans.factory.BeanCreationEx

ssh搭建问题,请问这是什么异常,我在学习实在找不出来了
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productAction' defined in URL [file:/D:/program/apache-tomcat-6.0.20/webapps/TestPage/WEB-INF/classes/applicationContext.xml]: Cannot resolve reference to bean 'productService' while setting bean property 'productService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'productService' defined in URL [file:/D:/program/apache-tomcat-6.0.20/webapps/TestPage/WEB-INF/classes/applicationContext.xml]: Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'productDao' of bean class [com.pb.service.impl.ProductServiceImpl]: Bean property 'productDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

ssh exception bean
[解决办法]
看一下com.pb.service.impl.ProductServiceImpl这个类中有没有productDao这个属性和setter方法。注意属性的名字大小写要一致,setter方法的大小写要和属性一致
[解决办法]
com.pb.service.impl.ProductServiceImpl里面的'productDao' 没有set方法,导致后面创建bean出错
[解决办法]
 Bean property 'productDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

检查下;

get set 方法最好自动生成,否则很容易出错。

热点排行