mybatis :sqlmapconfig.xml配置 ++++Mapper XML 文件(sql/insert/delete/update/select)(增删改查)用法

简介: 当然,这些仅是MyBatis功能的初步介绍。MyBatis还提供了高级特性,如动态SQL、类型处理器、插件等,可以进一步提供对数据库交互的强大支持和灵活性。希望上述内容对您理解MyBatis的基本操作有所帮助。在实际使用中,您可能还需要根据具体的业务要求调整和优化SQL语句和配置。

在Java的MyBatis框架中,sqlmapconfig.xml 是框架的核心配置文件,其中配置了MyBatis的全局属性和数据库连接信息,同时也定义了映射器(Mapper)XML文件的路径,映射器XML文件中则包含了具体的数据库操作语句,包括插入(Insert)、删除(Delete)、更新(Update)和查询(Select)等操作。

全局配置(sqlmapconfig.xml)的基本结构:

在全局配置文件中,您通常会配置环境(包括数据源和事务管理器)和映射器文件的路径。

<configuration>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="数据库驱动"/>
                <property name="url" value="数据库连接URL"/>
                <property name="username" value="数据库用户名"/>
                <property name="password" value="数据库密码"/>
            </dataSource>
        </environment>
    </environments>
    <mappers>
        <mapper resource="路径/YourMapper.xml"/>
    </mappers>
</configuration>

映射器(Mapper)XML文件:

映射器XML文件中定义了操作数据库的具体SQL语句。以下是一些基础的用法。

  1. Insert语句 - 用于将数据插入到数据库中。
<mapper namespace="com.example.mapper.YourMapper">
    <insert id="insertYourEntity" parameterType="YourEntity">
        INSERT INTO your_table_name (column1, column2, ...)
        VALUES (#{property1}, #{property2}, ...)
    </insert>
</mapper>
  1. Delete语句 - 用于从数据库中删除数据。
<mapper namespace="com.example.mapper.YourMapper">
    <delete id="deleteYourEntity" parameterType="int">
        DELETE FROM your_table_name WHERE id = #{id}
    </delete>
</mapper>
  1. Update语句 - 用于更新数据库中的数据。
<mapper namespace="com.example.mapper.YourMapper">
    <update id="updateYourEntity" parameterType="YourEntity">
        UPDATE your_table_name SET column1 = #{property1}, column2 = #{property2}, ...
        WHERE id = #{id}
    </update>
</mapper>
  1. Select语句 - 用于从数据库中查询数据。
<mapper namespace="com.example.mapper.YourMapper">
    <select id="selectYourEntity" parameterType="int" resultType="YourEntity">
        SELECT * FROM your_table_name WHERE id = #{id}
    </select>
    <select id="selectAllYourEntities" resultType="YourEntity">
        SELECT * FROM your_table_name
    </select>
</mapper>

在上述映射器文件中,namespace 指的是对应的Mapper接口的路径,id 对应Mapper接口中的方法名称,parameterType 指的是传入的参数类型,resultType 指的是查询操作返回的结果类型。在SQL语句中,#{property} 用于从传入的参数中取出相应的属性值。

用法:

在应用程序中,您会拥有对应的Mapper接口定义:

public interface YourMapper {
    void insertYourEntity(YourEntity yourEntity);

    void deleteYourEntity(int id);

    void updateYourEntity(YourEntity yourEntity);

    YourEntity selectYourEntity(int id);

    List<YourEntity> selectAllYourEntities();
}

您会在MyBatis的配置文件中关联这个接口和映射器XML文件。这样,当您在应用程序中调用接口方法时,MyBatis会自动找到映射器XML文件中定义的SQL语句并执行。

为了和数据库交互,您会使用MyBatis提供的 SqlSession 对象,这可以是通过 SqlSessionFactory 获得的。

SqlSession sqlSession = sqlSessionFactory.openSession();
YourMapper yourMapper = sqlSession.getMapper(YourMapper.class);
YourEntity yourEntity = yourMapper.selectYourEntity(1);
sqlSession.commit();
sqlSession.close();

这种设计将SQL语句管理与应用程序的业务逻辑分离,增强了代码的可维护性和可测试性。您能够通过简单的接口方法调用来执行复杂的数据库操作,而不用关心底层的SQL细节,这是MyBatis框架强大而受欢迎的原因之一。

当然,这些仅是MyBatis功能的初步介绍。MyBatis还提供了高级特性,如动态SQL、类型处理器、插件等,可以进一步提供对数据库交互的强大支持和灵活性。希望上述内容对您理解MyBatis的基本操作有所帮助。在实际使用中,您可能还需要根据具体的业务要求调整和优化SQL语句和配置。

目录
相关文章
|
2月前
|
SQL Java 数据库连接
mybatis使用四:dao接口参数与mapper 接口中SQL的对应和对应方式的总结,MyBatis的parameterType传入参数类型
这篇文章是关于MyBatis中DAO接口参数与Mapper接口中SQL的对应关系,以及如何使用parameterType传入参数类型的详细总结。
60 10
|
4月前
|
SQL Java 数据库连接
Mybatis系列之 Error parsing SQL Mapper Configuration. Could not find resource com/zyz/mybatis/mapper/
文章讲述了在使用Mybatis时遇到的资源文件找不到的问题,并提供了通过修改Maven配置来解决资源文件编译到target目录下的方法。
Mybatis系列之 Error parsing SQL Mapper Configuration. Could not find resource com/zyz/mybatis/mapper/
|
SQL 存储
SQL SELECT 语句
SQL SELECT 语句
94 0
|
SQL
【如何成为SQL高手】第五关:select语句基本用法
【如何成为SQL高手】第五关:select语句基本用法
336 0
【如何成为SQL高手】第五关:select语句基本用法
|
SQL 安全 数据库
SQL嵌套SELECT语句精讲
SQL嵌套SELECT语句精讲
544 0
|
SQL MySQL 关系型数据库
SQL语句-SELECT语句
select语句 Select语句是指从现存的一个或多个表中查看满足条件的数据 Select语句常规用法: 查看表中所有数据 Select * from students; 查看所有的sid和sname Select sid,sname from students; 查看符合条件的数据 Select...
1598 0