集成Mybatis的步骤
在SpringBoot中没有给Mybatis提供一些依赖,但是mybatis自己有对应的springBoot的依赖。
1.首先添加mybatis的依赖
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.3.2</version>
</dependency>
2.数据库驱动程序,在springBoot中引入时,这里版本是8.0的版本,而8.0的数据库驱动是必须指明Timezone的。
<!--数据库驱动-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
3.mybatis的核心配置,在application.yml中如下,这里简写了,映射xml文件地址和别名的配置
mybatis:
mapper-locations: classpath:mapper/*.xml
type-aliases-package: com.fuke.domain
4.配置mapper接口的扫描 在Application的核心配置类上加上注解@MapperScan(“这里是mapper接口包”)
@MapperScan("com.fuke.mapper")
5.数据库连接池的配置如下,这里必须配置timezone时区
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/springboot?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8
username: root
password: 123456