org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': Invocation of init method failed; nested exception is org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.mybatis.spring.SqlSessionFactoryBean] for bean with name 'sqlSessionFactory' defined in class path resource [config/mybatis-context.xml]; nested exception is java.lang.ClassNotFoundException: org.mybatis.spring.SqlSessionFactoryBean
Related cause: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.mybatis.spring.SqlSessionFactoryBean] for bean with name 'sqlSessionFactory' defined in class path resource [config/mybatis-context.xml]; nested exception is java.lang.ClassNotFoundException: org.mybatis.spring.SqlSessionFactoryBean
Related cause: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.mybatis.spring.SqlSessionTemplate] for bean with name 'sqlSession' defined in class path resource [config/mybatis-context.xml]; nested exception is java.lang.ClassNotFoundException: org.mybatis.spring.SqlSessionTemplate
Related cause: org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.jdbc.datasource.DataSourceTransactionManager] for bean with name 'transactionManager' defined in class path resource [config/mybatis-context.xml]; nested exception is java.lang.ClassNotFoundException: org.springframework.jdbc.datasource.DataSourceTransactionManager
스프링을 데이터베이스의 Mybatis 사용 중 에러가 발생하였고, 그로 인해 프로젝트가 실행되지 않았습니다. 본 문제는 라이브러리가 존재하지 않아 SqlSession 의 관련된 Bean을 생성하지 못한 것으로 파악하였습니다.
해결 방안은 pom.xml 에 라이브러리를 설치하는 과정으로 해결할 수 있었습니다.
# Contents
- 해결 방안
# 해결 방안
pom.xml에 해당 의존성을 추가하여 라이브러리를 다운 받습니다.
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${org.springframework-version}</version>
</dependency>
'오픈소스 > 스프링' 카테고리의 다른 글
[Spring] ExceptionHandler 적용 및 사용법 (0) | 2021.10.13 |
---|---|
[Spring] Cannot load JDBC driver class 'oracle.jdbc.OracleDriver' (1) | 2021.10.13 |
[Spring] 스프링 트렌젝션 사용 중 에러 해결 - TroubleShooting (0) | 2021.10.13 |
[Spring] JNDI 설정법 및 테스트 (0) | 2021.10.13 |
[Spring] Apache Jmeter 로 웹서버 성능 체크하기 (0) | 2021.10.05 |