SpringBoot와 Mybatis의 연동은 mybatis-spring-boot-autoconfigure로 하면 된다.
http://www.mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/
스프링에서 MyBatis를 지원하면 application.properties 에 기술만 해주면 될텐데 그렇지 않다.
아래에서 연동에 필요한 properties를 찾아도 없다.
https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
반대로 MyBatis에서 스프링을 지원하기 때문에 'mybatis-spring-boot-autoconfigure'에서 지원하는 properties 값을 기술해주어야 한다.
연동을 위해서 mybatis-config.xml, mapper 파일을 생성해 준 뒤 아래와 같이 해당 위치를 기술해주면 된다.
# MyBatis
mybatis.config-location=classpath:mybatis-config.xml
mybatis.mapper-locations=mapper/*.xml
'spring-project' 카테고리의 다른 글
spring security architecture (0) | 2017.11.12 |
---|---|
Error parsing SQL Mapper Configuration (0) | 2017.11.12 |
http://www.edwith.org/search/index (0) | 2017.11.11 |
SpringBoot jsp view resolver로 변경 할 때 주의 사항 (0) | 2017.11.11 |
SpringBoot application.properties 정의 (0) | 2017.11.11 |