一、整合MyBatis-Plus
1)、导入依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.2.0</version>
</dependency>
2)、配置
? ? ? ? 1、配置数据源:
? ? ? ? ? ? ? ? 1)、导入数据库的驱动? ? (db的不同版本对应不同的version)? ? ? ? ? ?? ? ? ? ? ? ? ??
????????????????<dependency>
???????????????? <groupId>mysql</groupId>
????????????????<artifactId>mysql-connector-java</artifactId>
????????????????<version>8.0.17</version>
????????????????</dependency>
? ? ? ? ? ? ? ? ?2)、在application.yml配置数据源相关信息? ? ? ? ?? ??
????????????? spring:
???????????????? datasource:
?????????????? username: ----
?????????????? password: ----
?????????????? url: ----
?????????????? driver-class-name: com.mysql.jdbc.Driver? ? ?? ?
? ? ? ? 2、配置MyBatis-Plus
? ? ? ? ? ? ? ? 1)、将@MapperScan("mapper接口地址")注入到启动类上
? ? ? ? ? ? ? ? ?2)、因为每个mapper-->mapper映射文件?
????????????????mybatis-plus:
????????????????mapper-locations: classpath:/mapper/**/*.xml
???????????????? global-config:
?????????????? db-config:
???????????? id-type: auto
? ? ? ? ? ? ? ? ?3)、上面两个的地址都是需要告诉mybatis的
|