springboot3.0.4整合mybatis-plus,怎么引入bean
时间: 2023-05-10 21:55:09 浏览: 163
spring-boot集成mybatis
您可以通过在pom.xml文件中添加以下依赖项来引入mybatis-plus:
```
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.2</version>
</dependency>
```
然后,在您的配置文件中添加以下内容:
```
mybatis-plus:
mapper-locations: classpath:/mapper/*.xml
type-aliases-package: com.example.entity
```
其中,mapper-locations指定了mapper文件的位置,type-aliases-package指定了实体类的包名。
最后,在您的代码中使用@Autowired注解来注入mybatis-plus的Mapper即可。
阅读全文