springboot创建时sql没有mybatisplus
时间: 2023-09-03 07:09:29 浏览: 77
Spring Boot 是一种快速开发框架,它使用了许多流行的 Java 技术,其中包括 MyBatis 和 MyBatis-Plus。
如果你在创建 Spring Boot 项目时没有使用 MyBatis-Plus,那么你需要手动添加 MyBatis-Plus 依赖。你可以通过在 pom.xml 文件中添加以下依赖来完成:
```
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>{mybatis-plus-version}</version>
</dependency>
```
其中,`{mybatis-plus-version}` 指的是你要使用的 MyBatis-Plus 版本号。你可以在 Maven 中央仓库中查找最新版本。
添加了 MyBatis-Plus 依赖之后,你需要在 Spring Boot 的配置文件(application.properties 或 application.yaml)中进行一些配置。以下是一个简单的示例:
```
# 数据库配置
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=root
# MyBatis-Plus 配置
mybatis-plus.configuration.map-underscore-to-camel-case=true
```
在这个示例中,我们配置了数据源和 MyBatis-Plus 的一些基本配置。为了让 MyBatis-Plus 能够自动扫描到你的 Mapper 类,你还需要在启动类上添加 `@MapperScan` 注解,例如:
```
@SpringBootApplication
@MapperScan("com.example.demo.mapper")
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
```
在这个示例中,我们将 Mapper 接口的包名设置为 `com.example.demo.mapper`,你需要将其替换为自己项目中的 Mapper 包名。
阅读全文