springboot配置mybatis-plus xml文件
时间: 2023-06-26 10:08:50 浏览: 227
spring boot+mybatis xml
要在Spring Boot项目中使用MyBatis-Plus,需要先添加相应的依赖。可以在项目的pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.3.1</version>
</dependency>
```
添加依赖后,在application.properties或application.yml文件中配置数据库连接信息。
然后,在项目中创建MyBatis-Plus的mapper接口和xml文件。mapper接口需要继承BaseMapper接口,xml文件中按照MyBatis的语法编写SQL语句。
接下来,需要在启动类中添加MyBatis-Plus的配置。可以使用MybatisPlusAutoConfiguration类来自动配置MyBatis-Plus,也可以手动配置。以下是手动配置的示例:
```java
@Configuration
@MapperScan("com.example.demo.mapper")
public class MybatisPlusConfig {
@Bean
public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor();
}
}
```
以上代码中,我们配置了分页插件PaginationInterceptor。同时,使用@MapperScan注解指定mapper接口所在的包路径。
最后,在xml文件中使用mapper标签来映射mapper接口。例如:
```xml
<mapper namespace="com.example.demo.mapper.UserMapper">
<resultMap id="BaseResultMap" type="com.example.demo.entity.User">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="age" property="age"/>
</resultMap>
<select id="getUserById" resultMap="BaseResultMap">
select id,name,age from user where id=#{id}
</select>
<insert id="insertUser" parameterType="com.example.demo.entity.User">
insert into user(name,age) values(#{name},#{age})
</insert>
<update id="updateUserById" parameterType="com.example.demo.entity.User">
update user set name=#{name},age=#{age} where id=#{id}
</update>
<delete id="deleteUserById" parameterType="int">
delete from user where id=#{id}
</delete>
</mapper>
```
以上是MyBatis-Plus的基本配置和使用方法。如果需要更详细的配置和使用说明,可以参考MyBatis-Plus的官方文档。
阅读全文