SpringBoot-- 整合MyBatis
Posted 听歌敲代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot-- 整合MyBatis相关的知识,希望对你有一定的参考价值。
1.pom.xml 配置maven依赖
<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.0.0</version> </dependency>
2.一定要在启动的地方加上@MapperScan("com.xsjt.dao")
3.配置文件中加上配置
spring.datasource.url=jdbc:mysql://localhost:3306/consult
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=org.gjt.mm.mysql.Driver
spring.datasource.max-idle=10
spring.datasource.max-wait=10000
spring.datasource.min-idle=5
spring.datasource.initial-size=5
spring.datasource.validation-query=SELECT 1
spring.datasource.test-on-borrow=false
spring.datasource.test-while-idle=true
spring.datasource.time-between-eviction-runs-millis=18800
spring.datasource.jdbc-interceptors=ConnectionState;SlowQueryReport(threshold=0) #打印SQL
mybatis.typeAliasesPackage=com.xsjt.bean
mybatis.mapperLocations=classpath:com/xsjt/xml/*Mapper.xml
以上是关于SpringBoot-- 整合MyBatis的主要内容,如果未能解决你的问题,请参考以下文章