org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘ApplicationU

IDEA报这个错误org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ApplicationUserDaoImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.apache.ibatis.session.SqlSession cn.o.base.dao.impl.BaseDaoImpl.sqlSession; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSession' defined in class path resource [spring/spring-dao.xml]: Cannot resolve reference to bean 'sqlSessionFactory' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [spring/spring-dao.xml]: Invocation of init method failed; nested exception is org.springframework.core.NestedIOException: Failed to parse config resource: class path resource [mybatis/mybatis-config.xml]; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource cn/o/user/sqlmap/UserMapper.xml

 

解决办法,在pom.xml下加这段代码:

        
            
                src/main/java
                
                    **/*.xml
                
            
            
                src/main/resources
                
                    **/*.*
                
            
        

 

你可能感兴趣的:(mybatis,intellij-idea)