因为同时配置了bean.xml和注解。
bean.xml配置了类的成员的property,然后在那个类里对成员变量又用了@AutoWired注解就会报这个。把bean.xml里的不需要的property删了就行。
使用AutoWired注解提示is not writable or has a invalid setter method.
文章讨论了在Spring框架中,当同时使用bean.xml配置文件为类成员变量设置property和使用@Autowired注解时可能出现的问题,解决方法是删除bean.xml中不必要的property配置。
摘要由CSDN通过智能技术生成