摘要: 在Mybatis的配置中,标签有非常多的属性,其中ResultMap的标签尤其令我头疼,故写一篇随笔来简单解释一下ResultMap。 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE mapper 3 PUBLIC "-//mybatis.o 阅读全文
posted @ 2020-03-19 20:22 弗乱 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 在sql语句之中,查询根据场景要求不同有两种方式,精准查询与模糊查询: 精确查询语法:select * from student where name="zhangsan"; 模糊查询语法:select * from student where name like "%*san%"; 而在java开 阅读全文
posted @ 2020-03-19 14:24 弗乱 阅读(5042) 评论(0) 推荐(0) 编辑