org.springframework.beans.TypeMismatchException

java.lang.IllegalArgumentException: Cannot convert value of type [com.lopu.framework.modules.maintain.action.BeltAction] to required type [com.lopu.framework.modules.maintain.bean.Belt] for property 'btBean': no matching editors or conversion strategy found

 

 

引起的原因是我在action中起的属性名字btBean和在Spring中的配置文件中applicationContext起的bean的id一样。我又在action中对btBean写了get,set方法.所以spring就想当然的帮我注入这个bean,但这个bean我设置的是实体类,而spring的配置文件写的是action,所以报错啦。

你可能感兴趣的:(spring,bean)