使用spring注解后,引用对象就报错,
@Service("UserBiz") public class UserBizImpl implements UserBiz{ @Autowired
private UserDao userDao; public boolean login(UserBean userBean) { return userDao.login(userBean); } }
xml中如下配置
<bean id="userBiz" class="com.szy.biz.impl.UserBizImpl"> <property name="userDao" ref="userDao"></property>
</bean> <!--指定登录的实现bean --> <bean id="userDao" class="com.szy.dao.impl.Test"></bean>
这样配置后就报org.springframework.beans.NotWritablePropertyException: Invalid property 'userDao' of bean class [com.szy.biz.impl.UserBizImpl]: Bean property 'userDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
如果我将<property》去掉
<bean id="userBiz" class="com.szy.biz.impl.UserBizImpl"> <bean id="userDao" class="com.szy.dao.impl.Test"></bean>
运行正常,求解?
不是用了@autowired就不用setter跟getter了吗,怎么会报这种错误
<context:component-scan/>这个是有的版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。