spring+ibatis+struts的一个小东西,出了个错,麻烦大家看看
先看网页上的错误信息吧:
javax.servlet.ServletException: Error creating bean with name 'managerFacade ' defined in class path resource [spring.xml]: Cannot resolve reference to bean 'managerImpl ' while setting bean property 'managerServiceImpl '; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'managerImpl ' defined in class path resource [spring.xml]: Cannot resolve reference to bean 'questionsDao ' while setting bean property 'questionsDao '; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'questionsDao ' defined in class path resource [spring.xml]: Instantiation of bean failed; nested exception is
org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.webexam.dao.QuestionsDao]: Constructor threw exception; nested exception is com.ibatis.common.exception.Nested
RuntimeException: Error occurred. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: com.ibatis.common.exception.NestedRuntimeException: Error parsing XPath '/sqlMapConfig/sqlMap '. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: com.ibatis.common.exception.NestedRuntimeException: Error parsing XPath '/sqlMap/resultMap/result '. Cause: com.ibatis.common.exception.NestedRuntimeException: Error. Could not set TypeHandler. Cause:
java.lang.ClassNotFoundException: String
Caused by: java.lang.
ClassNotFoundException: String
上面的只是第一行。。。
我的spring.xml文件比较简单:
<bean id= "questionsDao "
class= "com.webexam.dao.QuestionsDao ">
</bean>
<bean id= "managerImpl " class= "com.webexam.Service.Manager.ManagerServiceImpl " singleton= "false ">
<property name= "questionsDao ">
<ref local= "questionsDao "> </ref>
</property>
</bean>
<bean id= "managerFacade " class= "com.webexam.Service.Manager.ManagerServiceFaca