[springboot] mybatis 연동
- Goalspring boot+ gradle + mybatis 연동 - Time20min - Enviroment springboot1.4 , java 1.8, gradle, - Tutorialbuild.gradle에 라이브러리 추가1compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1")cs mapper interface 추가12345@Mapperpublic interface HistroyMapper { @Select("SELECT * FROM HISTORY WHERE SEQ= ${seq}") List selectHistory(String seq);}Colored by Color Scriptercs controller에서 사용123456..