Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

One-to-many Mapping of mybatis

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Continue the one-to-one problem of mybatis, or the one-on-one example above (http://fengcl.blog.51cto.com/9961331/1875657)

What if a user has more than one work? This involves an one-to-many problem. Similarly, mybatis one-to-many can still be solved in two ways.

1. Implement one-to-many mapping using embedded ResultMap

1) entity

Public class User implements Serializable {private static final long serialVersionUID = 112596782083832677L; private Integer id; / / numbered private String email; / / mailbox private String realName; / / real name private String telephone; / / telephone number private List worksInfos; / / works / / get,set method.} public class WorksInfo implements Serializable {private Integer id; private Integer userId Private Date uploadDate; / / upload time private Date updateDate; / / update time / / get,set method.}

2) dao interface is omitted.

3) mapper mapping file

Select u.resume. * from user u left join worksInfo w on u.id = w.userId where u.id = # {id}

4) Test omission

Second, realize one-to-many by nested query.

1) the entity class is as above

2) dao layer interface omitted

3) mapper file mapping

Select * from worksInfo where userId = # {userId} select * from user where id = # {id}

4) Test method ignoring

Note: the column attribute in the collention element, that is, the condition in the main table to be passed to the secondary table for query, such as in this case:

Timely pass the id field in the user table to the findWorksInfoByUserId method for parameter use, corresponding to the userId field in the worksInfo table. In addition, nesting select statements can cause problems with Number1. First, the main query will be executed (once), for the main

For each row returned by the query, another query will be executed (the main query N rows, then this query N times). For

For large databases, this can lead to poor performance problems.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report