@Mapper
public interface ReviewMapper {
이런식으로 @Mapper를 붙여놨는데도 ReviewMapper가 스프링빈으로 등록되어있지않아 찾을 수 없다면서
서버가 켜지지않았다.
그때나의 MyBatis 버전은 2.2.0이였다. 그리고 스프링부트는 3.0.1이였다.
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.0'
하지만 MyBatis의 springboot 문서를 보면
스프링부트가 2.5 - 2.7 버전인 사람만 mybatis-spring-boot-start 2.2 버전을 사용할 수 있다고한다.
바로 수정해주었다.
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.1'
'문제해결' 카테고리의 다른 글
spring security 라이브러리 추가시/ 로그인 화면 없애기 (0) | 2023.05.10 |
---|---|
spring)message 파일의 값들이 ???로 나올때 (0) | 2023.02.03 |
h2) 인텔리제이에 h2 데이터베이스를 연결해도 테이블이 보이지않는 문제 (0) | 2023.01.31 |
인텔리제이 build가 안되는 문제 , @SpringBootApplication (can not find) (0) | 2023.01.27 |
Spring) @ExceptionHandler(Exception.class)가 동작하지않음. (0) | 2023.01.25 |
댓글