总结 MyBatis 的XML实现方法(使用XML使用实现数据的增删改查操作)

MyBatis是一个优秀的持久层框架,它的XML配置文件是实现数据库操作的关键之一。通过XML文件,可以定义SQL语句、映射关系和一些高级功能。下面将探讨下如何使用MyBatis的XML配置文件实现数据的增、删、改、查操作。

1.配置文件

首先要确保 mybatis-config.xml 配置文件中引入了映射文件的路径:

java 复制代码
<!-- mybatis-config.xml -->
<configuration>
    <!-- 其他配置 -->
    <mappers>
        <mapper resource="com/example/mappers/UserMapper.xml"/>
        <!-- 其他映射文件 -->
    </mappers>
</configuration>

2.增加数据

在UserMapper.xml文件中,使用insert元素定义插入数据的SQL语句:

java 复制代码
<!-- UserMapper.xml -->
<mapper namespace="com.example.mappers.UserMapper">
    <!-- 插入数据 -->
    <insert id="insertUser" parameterType="com.example.model.User">
        INSERT INTO users (id, username, email) VALUES (#{id}, #{username}, #{email})
    </insert>
</mapper>

上述例子中,#{id}、#{username}、#{email}是占位符,MyBatis会根据传入的User对象的属性值进行替换。

3.查询数据

使用select元素定义查询数据的SQL语句:

java 复制代码
<!-- UserMapper.xml -->
<mapper namespace="com.example.mappers.UserMapper">
    <!-- 查询数据 -->
    <select id="selectUserById" parameterType="int" resultType="com.example.model.User">
        SELECT * FROM users WHERE id = #{id}
    </select>
</mapper>

在这个例子中,parameterType指定了传入SQL语句的参数类型,resultType指定了返回结果的类型。

4.更新数据

使用update元素定义更新数据的SQL语句:

java 复制代码
<!-- UserMapper.xml -->
<mapper namespace="com.example.mappers.UserMapper">
    <!-- 更新数据 -->
    <update id="updateUser" parameterType="com.example.model.User">
        UPDATE users SET username = #{username}, email = #{email} WHERE id = #{id}
    </update>
</mapper>

5. 删除数据

使用delete元素定义删除数据的SQL语句:

java 复制代码
<!-- UserMapper.xml -->
<mapper namespace="com.example.mappers.UserMapper">
    <!-- 删除数据 -->
    <delete id="deleteUser" parameterType="int">
        DELETE FROM users WHERE id = #{id}
    </delete>
</mapper>

6. 参数传递

在上述例子中,使用#{}占位符来传递参数。MyBatis支持多种参数传递方式,包括#{}占位符、${}占位符、@Param注解等。

相关推荐
鹿屿二向箔35 分钟前
基于SSM(Spring + Spring MVC + MyBatis)框架的汽车租赁共享平台系统
spring·mvc·mybatis
沐雪架构师4 小时前
mybatis连接PGSQL中对于json和jsonb的处理
json·mybatis
鹿屿二向箔5 小时前
基于SSM(Spring + Spring MVC + MyBatis)框架的咖啡馆管理系统
spring·mvc·mybatis
aloha_78915 小时前
从零记录搭建一个干净的mybatis环境
java·笔记·spring·spring cloud·maven·mybatis·springboot
毕业设计制作和分享16 小时前
ssm《数据库系统原理》课程平台的设计与实现+vue
前端·数据库·vue.js·oracle·mybatis
paopaokaka_luck19 小时前
基于Spring Boot+Vue的助农销售平台(协同过滤算法、限流算法、支付宝沙盒支付、实时聊天、图形化分析)
java·spring boot·小程序·毕业设计·mybatis·1024程序员节
cooldream200920 小时前
Spring Boot中集成MyBatis操作数据库详细教程
java·数据库·spring boot·mybatis
不像程序员的程序媛21 小时前
mybatisgenerator生成mapper时报错
maven·mybatis
小布布的不1 天前
MyBatis 返回 Map 或 List<Map>时,时间类型数据,默认为LocalDateTime,响应给前端默认含有‘T‘字符
前端·mybatis·springboot
小百菜1 天前
dom4j实现xml转map,xml转json字符串
xml·json·xml转map·xml转json