springboot集成mybatis简单过程
springboot集成mybatis简单过程:
1、在pox.xml中加入mybatis的依赖。
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.3</version> </dependency>
2、在application.yml中配置mybatis映射文件位置。
mybatis:
mapper-locations: com/hymng/sbt/mapper/*.xml
3、编写mapper接口文件和对应xml文件,注意mapper接口类要使用@Mapper进行注解,对应的xml要放在第二步配置的路径下。
4、在pom.xml的<build>标签中加入以下代码,其作用是让maven插件打包时不遗漏xml格式的文件。
<resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> </resources>
ps:如果不使用xml文件编写sql语句,而是直接将sql写在mybatis相关注解中,可省去第2步和第4步。