Mybatis-Spring-Boot-Starter 引入语句
时间: 2023-07-30 07:06:15 浏览: 122
spring-boot-starter-mybatis-spring-boot-1.0.2.zip
如果你想在 Spring Boot 项目中使用 MyBatis ,可以按照以下步骤引入 MyBatis-Spring-Boot-Starter:
1. 在 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
```
2. 在 application.properties 文件中配置数据库连接信息:
```
spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
3. 创建 Mapper 接口和对应的 XML 文件,并在 Mapper 接口中定义 SQL 语句。
4. 在需要使用 Mapper 接口的地方,使用 @Autowired 注解将 Mapper 接口注入到对应的类中。
以上是使用 MyBatis-Spring-Boot-Starter 的基本流程,具体实现可以参考官方文档。
阅读全文