Mybatis动态SQL
2022/2/22 19:27:02
本文主要是介绍Mybatis动态SQL,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
这里的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(); } }
这篇关于Mybatis动态SQL的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-29RocketMQ底层原理资料详解:新手入门教程
- 2024-11-29RocketMQ源码资料解析与入门教程
- 2024-11-29[开源]6.1K star!这款电视直播源神器真的太赞啦!
- 2024-11-29HTTP压缩入门教程:轻松提升网页加载速度
- 2024-11-29JWT开发入门指南
- 2024-11-28知识管理革命:文档软件的新玩法了解一下!
- 2024-11-28低代码应用课程:新手入门全攻略
- 2024-11-28哪些办公软件适合团队协作,且能够清晰记录每个阶段的工作进展?
- 2024-11-28全栈低代码开发课程:零基础入门到初级实战
- 2024-11-28拖动排序课程:轻松掌握课程拖动排序功能