코딩
Spring Error 정리 본문
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의 패키지
를 추가해주거나 경로를 확인해 주면 된다.
'Spring' 카테고리의 다른 글
[SpringBoot] Postman으로하는 restAPI 테스트(+ 공지사항 CRUD) (0) | 2022.05.05 |
---|---|
[Spring] FileUpload하기(+다중파일업로드) (0) | 2022.04.22 |
[Spring] Interceptor 정리 (0) | 2022.04.21 |
[Spring] 오류정리 (0) | 2022.04.17 |
Mac에서 Spring web서버 터미널로 종료하기 (0) | 2021.09.09 |
Comments