Error creating bean with name

阅读更多
[06-10-7 15:27:37:188 CST] 115d2eb8 RequestProces W org.apache.struts.action.RequestProcessor  Unhandled Exception thrown: class org.springframework.beans.factory.BeanCreationException
[06-10-7 15:27:37:672 CST] 115d2eb8 WebGroup      E SRVE0026E: [Servlet 错误]-[Error creating bean with name '/allQueryAction' defined in ServletContext resource [/WEB-INF/action-servlet.xml]: Error setting property values; nested exception is PropertyAccessExceptionsException (1 errors)]:org.springframework.beans.factory.BeanCreationException: Error creating bean with name '/allQueryAction' defined in ServletContext resource [/WEB-INF/action-servlet.xml]: Error setting property values; nested exception is PropertyAccessExceptionsException (1 errors)
Caused by: PropertyAccessExceptionsException (1 errors)
org.springframework.beans.TypeMismatchException: Failed to convert property value of type [com.legend.qryTemplate.service.impl.TemplateManagerImpl$$EnhancerByCGLIB$$5cca3fd4] to required type [com.legend.qryTemplate.service.TemplateManager] for property 'templateManager'; nested exception is java.lang.IllegalArgumentException: No matching editors or conversion strategy found
Caused by: java.lang.IllegalArgumentException: No matching editors or conversion strategy found
 at org.springframework.beans.PropertyTypeConverter.convertIfNecessary(PropertyTypeConverter.java:209)
 at org.springframework.beans.PropertyTypeConverter.convertIfNecessary(PropertyTypeConverter.java:108)
 at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:723)
 at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:575)
 at org.springframework.beans.AbstractPropertyAccessor.setPropertyValue(AbstractPropertyAccessor.java:49)
 at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:68)

问题找了很久最终,仔细看输出的日志,最终找到了问题.在action-servlet.xml中的"/allQueryAction"所注入的BEAN没有实现相关的接口.

你可能感兴趣的:(Bean,Java,Servlet,Struts,XML)