您好,登錄后才能下訂單哦!
怎么在Mybatis中實現映射、分頁、排序功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
1、三種對象映射關系
一個人對應一個身份證,一位同學對應一個班級,每個房間都有自己的房間號,當一個事物它對應另一個事物是唯一的,那么它們之間的關系就是一對一的。
這里我演示的案例是,一個學生有著一位老師
老師基礎信息:
學生詳細信息:
如果說,我們需要將兩個表一起查出來,我們可以這么做:
問題: 如果對象的列重復了,必須要使用到別名
1、先定義實體結構,也就是我們返結果的實體類
public class Student { @TableId private int id; private String name; private int tid; @TableField(exist = false) private Teacher teacher; }
Teacher:
public class Teacher { @TableId private int id; private String name; }
2、 編寫xml文件
這里有兩種方式,使用association時的關鍵在于告訴mybatis如何加載關聯(assocition)。
嵌套查詢:通過執行另外一個 SQL 映射語句來返回預期的復雜類型。
嵌套結果:使用嵌套結果映射來處理重復的聯合結果的子集。
第一種: 使用嵌套查詢,也就是使用另一個sql
// teacherMapper.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.lll.mybatisplusdemo.mapper.TeacherMapper"> <select id="getTeacher" parameterType="int" resultType="teacher"> select * from teacher where id = #{id}; </select> </mapper> // studentMapper.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <select id="getStudent2" parameterType="int" resultMap="getStudentMap2"> select * from student where id =#{id}; </select> <resultMap id="getStudentMap2" type="student"> <id column="id" property="id"></id> <result column="name" property="name"></result> <result column="tid" property="tid"></result> <association property="teacher" javaType="Teacher" column="tid" select="com.lll.mybatisplusdemo.mapper.TeacherMapper.getTeacher"> <id column="id" property="id"></id> <result column="name" property="name"></result> </association> </resultMap> </mapper>
嵌套查詢的方式很簡單,但是對于大型數據集合和列表將不會表現很好。問題就是我們熟知的
“N+1 查詢問題”。概括地講, N+1 查詢問題可以是這樣引起的:
你執行了一個單獨的 SQL 語句來獲取結果列表(就是“+1”)。
對返回的每條記錄,你執行了一個查詢語句來為每個加載細節(就是“N”)。
第二種: 使用嵌套結果來映射聯合查詢來的數據
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.lll.mybatisplusdemo.mapper.StudentMapper"> <select id="getStudent" parameterType="int" resultMap="getStudentMap"> SELECT a.*,b.id as cid,b.name as cname FROM `student` as a,teacher as b WHERE a.id =#{id} and a.tid = b.id; </select> <resultMap id="getStudentMap" type="student"> <id column="id" property="id"></id> <result column="name" property="name"></result> <result column="tid" property="tid"></result> <association property="teacher" javaType="Teacher"> <id column="cid" property="id"></id> <result column="cname" property="name"></result> </association> </resultMap> </mapper>
我們在相應的mapper中添加方法接口便可以使用了。
案例:一個老師有多個學生
1、實體類
public class Teacher { @TableId private int id; private String name; @TableField(exist = false) private List<Student> students; }
2、編寫xml
同樣還是,我們先來個嵌套結果映射
嵌套結果:
// teacherMapper.xml <select id="getStudent" parameterType="int" resultMap="getStudentMap"> SELECT a.*,b.id as cid,b.name as cname,b.tid from teacher as a , student as b where b.tid = a.id and a.id =#{id}; </select> <resultMap id="getStudentMap" type="teacher"> <id column="id" property="id"></id> <result column="name" property="name"></result> <collection property="students" ofType="Student"> <id column="cid" property="id"></id> <result column="cname" property="name"></result> <result column="tid" property="tid" ></result> </collection> </resultMap>
嵌套查詢:
// teacherMapper.xml <select id="getStudent2" parameterType="int" resultMap="getStudentMap2"> select * from teacher as a where a.id = #{id} </select> <resultMap id="getStudentMap2" type="teacher"> <id column="id" property="id"></id> <result column="name" property="name"></result> <collection property="students" column="id" ofType="Student" select="com.lll.mybatisplusdemo.mapper.StudentMapper.getStudentByTid"> </collection> </resultMap> // studentMapper.xml <select id="getStudentByTid" parameterType="int" resultType="student"> select * from student as a where a.tid = #{id} </select>
學生與課程是多對多的關系,與上面的一對多的操作方式是類似的
mapper定義方法,方法傳入page參數
public interface UserMapper{ IPage<User> selectPageVo(Page<User> page); }
userMapper.xml文件編寫一個普通的返回結果是list的方法,mybatis會自動幫你做分頁
<select id="selectPage" resultType="com.baomidou.cloud.entity.UserVo"> SELECT * FROM user </select>
結論:使用order by,記住要使用'$',不能使用'#'
<select id="selectPage" resultType="com.baomidou.cloud.entity.UserVo"> SELECT * FROM user order by ${sortColumn} ${sortOrder} </select>
1、傳入的參數在SQL中顯示不同
#傳入的參數在SQL中顯示為字符串(當成一個字符串),會對自動傳入的數據加一個雙引號。
例:使用以下SQL
select id,name,age from student where id =#{id}
當我們傳遞的參數id為 “1” 時,上述 sql 的解析為:
select id,name,age from student where id ="1"
$傳入的參數在SqL中直接顯示為傳入的值
例:使用以下SQL
select id,name,age from student where id =${id}
當我們傳遞的參數id為 “1” 時,上述 sql 的解析為:
select id,name,age from student where id =1
2、#可以防止SQL注入的風險(語句的拼接);但$無法防止Sql注入。
3、$方式一般用于傳入數據庫對象,例如傳入表名。
4、大多數情況下還是經常使用#,一般能用#的就別用$
;但有些情況下必須使用$
,例:MyBatis排序時使用order by 動態參數時需要注意,用$而不是#。
看完上述內容,你們掌握怎么在Mybatis中實現映射、分頁、排序功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。