Mybatis动态SQL

本文介绍了如何使用MyBatis的动态SQL进行查询优化,通过案例展示了如果将`where`子句优化为标签形式,提高代码的可读性和效率。在测试中,成功添加了一篇博客,并根据标题进行了筛选查询,演示了`if`标签的使用。
摘要由CSDN通过智能技术生成

这里的where可以被优化为标签形式

<?xml version="1.0" encoding="UTF8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.tl.dao.BlogMapper">

    <insert id="addBlog" parameterType="com.tl.pojo.Blog">
    insert into blog(id,title,author,creat_time,views) values (#{id},#{title},#{author},#{creatTime},#{views})
    </insert>

    <select id="getBlog" parameterType="map" resultType="com.tl.pojo.Blog">
        select * from blog where 1=1
        <if test="title!=null">
            and title like #{title}
        </if>
    </select>
</mapper>

import com.tl.dao.BlogMapper;
import com.tl.pojo.Blog;
import com.tl.utils.IDutils;
import com.tl.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;

import java.util.Date;
import java.util.HashMap;
import java.util.List;

/**
 * @author tl
 */
public class Test {
    @org.junit.Test
    public void test1(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
        int i=mapper.addBlog(new Blog(IDutils.getID(),"三天学完spring套餐","tl",new Date(),999999));
        System.out.println(i);
        sqlSession.commit();
        sqlSession.close();
    }
    @org.junit.Test
    public void test2(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        BlogMapper mapper = sqlSession.getMapper(BlogMapper.class);
        HashMap map = new HashMap();
        map.put("title","一天学完java");
        List<Blog> list = mapper.getBlog(map);
        for(Blog blog:list){
            System.out.println(blog);
        }
        sqlSession.close();
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值