Mybatis中连接查询和嵌套查询实例代码
程序员文章站
2022-06-24 09:58:04
首先在mysql中确立表:#表一:地址国家表create table address(aid int auto_increment primary key,aname varchar(20));ins...
首先在mysql中确立表:
#表一:地址国家表 create table address(aid int auto_increment primary key,aname varchar(20)); insert into address values(null,"魏国"); insert into address values(null,"蜀国"); insert into address values(null,"吴国"); #表二:出场人物表 create table person( pid int auto_increment primary key, pname varchar(20), paid int, constraint pafk foreign key person(paid) references address(aid) on update cascade on delete cascade ); insert into person values(1,"曹操",1); insert into person values(2,"荀彧",1); insert into person values(3,"张辽",1); insert into person values(4,"刘备",2); insert into person values(5,"关羽",2); insert into person values(6,"张飞",2); insert into person values(7,"诸葛亮",2); insert into person values(8,"孙权",3); insert into person values(9,"周瑜",3); insert into person values(10,"陆逊",3); insert into person values(11,"公孙瓒",null); #表三:交通工具表 create table tool(tid int auto_increment primary key,tname varchar(20)); insert into tool values(1,"马"); insert into tool values(2,"船"); #表四:地址国家——交通工具 多对多关系表 create table aandt( a_aid int, a_tid int, primary key(a_aid,a_tid),#联合主键,是指多个字段组成一个组合,该组合在数据表中唯一 constraint foreign key aandt(a_aid) references address(aid) on update cascade on delete cascade, constraint foreign key aandt(a_tid) references tool(tid) on update cascade on delete cascade ); insert into aandt values(1,1); insert into aandt values(2,1); insert into aandt values(2,2); insert into aandt values(3,2);
查询a表的所有信息,如果a表的信息有对应的b表的信息,则查询b表的信息,如果没有,则不查询。
多对一,如:查询所有人物信息,如果人物有对应国家,则查询国家信息,如果没有,则不查询。多个人物属于一个国家。
一对多,如:查询所有国家信息,如果国家有对应人物,则查询人物信息,如果没有,则不查询。一个国家拥有多个城市。
多对多,如:查询所有国家信息,如果国家拥有对应的交通工具,则查询交通工具信息,没有则不查询。与此同时,多种交通工具存在于于多个国家。
一、连接查询:
连接查询使用时,使用偏向于a表所在方向的外连接,可获得a表所有信息,和对应的b表信息。该方式为饿汉式,内存占用较大,但对数据库访问次数较少而导致消耗时间少。
1、多对一:
<!--多对一的数据库--> <mapper namespace="com.fh.dao.persondao"> <!--该映射的id为map1,该映射的内容为:将查询到的字段的结果值,按照本映射的对应关系,分别封装在person实体类下的各个属性上,整体构成person--> <resultmap id="map1" type="com.fh.domain.person"> <id column="pid" property="pid"/><!--id:主键映射; column:数据库表字段; property:类中对应属性名--> <result column="pname" property="pname"/><!--result:非主键映射--> <result column="paid" property="paid"/> <association property="address" javatype="com.fh.domain.address"><!--association:在查询到多,然后对应出一时,用于关联对应出一的一方; property:查询类中包含的子对象属性; javatype:子对象属性封装对应的类--> <id column="aid" property="aid"/> <result column="aname" property="aname"/> </association> </resultmap> <select id="findallperson" resultmap="map1">/*resultmap:自己编写的结果集,本查询的返回值正是该结果集所对应的映射组构成的person*/ -- 查询所有人及其对应的地址,以人为主,则对人侧外连接 select * from person p left outer join address a on p.paid = a.aid </select> </mapper>
2、一对多:
<!--一对多的数据库--> <mapper namespace="com.fh.dao.addressdao"> <resultmap id="map2" type="com.fh.domain.address"> <id column="aid" property="aid"/> <result column="aname" property="aname"/> <collection property="personlist" oftype="com.fh.domain.person"><!--collection:查询到一,接着关联对应出多时,指向多的一方; fotype:集合中每个元素所属的映射类--> <id column="pid" property="pid"/> <result column="pname" property="pname"/> <result column="paid" property="paid"/> </collection> </resultmap> <select id="findalladdress" resultmap="map2"> select * from address a left outer join person p on a.aid = p.paid; </select> </mapper>
3、多对多:
<mapper namespace="com.fh.dao.tooldao"> <resultmap id="map3" type="com.fh.domain.tool"> <id column="tid" property="tid"/> <result column="tname" property="tname"/> <collection property="addresslist" oftype="com.fh.domain.address"> <id column="aid" property="aid"/> <result column="aname" property="aname"/> </collection> </resultmap> <select id="findalltool" resultmap="map3"> select t.*,a.* from tool as t left outer join aandt as a_t on t.`tid` = a_t.`a_tid` left outer join address as a on a_t.`a_aid` = a.`aid`; </select>
二、嵌套查询:
嵌套查询使用时,先查询a表的信息,然后依赖a和b表的外键约束,利用in(),再次查询b表对应到a表上的信息。该方式可以改为饿汉式,内存使用较小,但需要多次访问数据库而导致消耗时间多。
1、多对一:
persondao接口内写入:
//查询所有人,以及其对应的地址 list<person> findpersonfromaddress();
对应映射配置中:
<!--多对一的数据库--> <mapper namespace="com.fh.dao.persondao"> <!--person映射的基本属性对应下面person的结果集,本结果集内部再继续进行处理--> <resultmap id="map1" type="com.fh.domain.person"> <id column="pid" property="pid"/> <result column="pname" property="pname"/> <result column="paid" property="paid"/> <!-- 对应到person内的子属性对象,column内为person对应到address的外键,由此外键,传入select内的方法进行二次嵌套查询,交由addressdao在其中的指定方法进行处理 即要求查询目标为:address.aid = person.paid --> <association property="address" column="paid" select="com.fh.dao.addressdao.findaddressbyid"/> </resultmap> <!--第一次查询为只查询主要对象,自定义结果集--> <select id="findpersonfromaddress" resultmap="map1"> select * from person </select> </mapper>
继续编写指向addressdao接口中的findaddressbyid:
//按照id查询address list<address> findaddressbyid(integer id);
回到addressdao配置文件:
<mapper namespace="com.fh.dao.addressdao"> <!--根据id对address查询--> <select id="findaddressbyid" resulttype="com.fh.domain.address"> select * from address where aid = #{aid} </select>
2、一对多:
addressdao接口内写入:
list<address> findaddresswithperson();
其对应映射配置中:
<resultmap id="map2" type="com.fh.domain.address"> <id column="aid" property="aid"/> <result column="aname" property="aname"/> <collection property="personlist" column="aid" select="com.fh.dao.persondao.findpersonbyid"/> </resultmap> <select id="findaddresswithperson" resultmap="map2"> select * from address </select>
针对指出的persondao接口的findpersonbyid:
list<person> findpersonbyid(integer id);
其对应的映射配置中:
<select id="findpersonbyid" resulttype="com.fh.domain.person"> select * from person where pid = #{pid} </select>
对于嵌套查询的延迟加载问题,需添加配置:
方法一:
association或collection中多加一条属性:fetchtype=“lazy”
方法二:
<settings> <setting name="lazyloadingenable" value="true"/> <setting name="lazyloadtriggermethods" value="true"/><!--本条设置表示将包括原本不会延迟加载的equals/clone/hashcode/tostring在内所有方法进行延迟加载--> </settings>
到此这篇关于mybatis中连接查询和嵌套查询的文章就介绍到这了,更多相关mybatis连接查询和嵌套查询内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!