코딩

Spring Error 정리 본문

Spring

Spring Error 정리

ssooyn_n 2022. 4. 30. 20:02

 

 

 

 Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed;

 

이와 같은 에러나 났을 때는

application.properties에 있는

 

# mybatis

mybatis.mapper-locations=mapper의위치

mybatis.type-aliases-package=mapper가 참조하는 dto의 패키지

를 추가해주거나 경로를 확인해 주면 된다.

Comments