mybatis处理表与表之间的关系

  • Post author:
  • Post category:其他


比如要在帖子回复表里显示其它两张相关联表的信息。

处理的第一种方式:

1)主要的数据实体类是ReplyInfo,相关联的实体表的数据是TitleInfo,UserInfo。

那么首先创建的是ReplyInfoView的实体对象。

packagecom.gxa.bj.model;

public class ReplyInfoView extendsReplyInfo {

private String userName;

public String getUserName() {

returnuserName;

}

publicvoid setUserName(String userName) {

this.userName= userName;

}

publicString getTitleName() {

returntitleName;

}

publicvoid setTitleName(String titleName) {

this.titleName= titleName;

}

privateString titleName;

}


要关联的哪些数据,就直接把该数据加入到继承类的字段里。

2)编写相应的处理接口(Mapper接口):

packagecom.gxa.bj.dao.imp;

import com.gxa.bj.dao.IDaoBBS;

import com.gxa.bj.model.ReplyInfo;

public interface ReplyInfoMapper extendsIDaoBBS<ReplyInfo> {

}

3)编写相应的SQL配置文件(ReplyInfoMapper.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”>

<mappernamespace=”com.gxa.bj.dao.imp.ReplyInfoMapper”>

<select id=”getModel”

resultType=”com.gxa.bj.model.ReplyInfoView”

>


select r.replyid,r.replycontent asreployContent,r.replyTime,


r.titleid,r.userid,

u.userName,t.titleName


from replyinfo r inner join userinfo u


on r.userid = u.userid


inner join titleinfo t


on r.titleid = t.titleid


where r.replyId = #{id}

</select>

</mapper>

4)将刚编写的mapper映射文件加入到mybatis-config.xml中:

<mappers>

<mapper resource=”com/gxa/bj/model/UserInfoMapper.xml”/>


<mapperresource=”com/gxa/bj/model/ReplyInfoMapper.xml”/>

</mappers>

5)编写测试类:

ReplyInfoMapperreplyInfoMapper = sqlSession.getMapper(ReplyInfoMapper.class);

ReplyInfoView replyInfoView =(ReplyInfoView)replyInfoMapper.getModel(“bfdc6c63ce774f21b3344f4587d69199”);

System.out.println(“帖子名字:”+replyInfoView.getTitleName());

System.out.println(“回复的作者:”+replyInfoView.getUserName());

System.out.println(“帖子的回复内容:”+replyInfoView.getReployContent());

sqlSession.close();

处理的第二种方式:(更能体现实体与实体之间的关系)

1.一对多的情况。在多的实体对象里会出现一的实体对象的属性:

帖子

(n)

帖子分类

(1)

实现的原理:不改变原有的实体类。加入实体与实体之间的映射结果。

实现的步骤:

1)创建一个Mapper的映射文件。TitleInfoMapper.xml.

该文件里除了相对应的多表查询的SQL语句之外,还具有结果集的映射配置。

<?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”>

<mappernamespace=”com.gxa.bj.dao.imp.TitleInfoMapper”>

<select id=”getModel” parameterType=”java.lang.String”resultMap=”TitleInfoResult”>

select * from titleinfo t inner join userinfo u

on t.userid = u.userid

inner join typeinfo f

on t.typeid = f.typeid

where t.titleid = #{id}

</select>

<

resultMap

type=”com.gxa.bj.model.TitleInfo”  id=”TitleInfoResult”>

<result column=”titleid”property=”titleId”></result>

<result column=”titleName”property=”titleName”></result>

<result column=”titleTime”property=”titleTime”></result>

<result column=”titleContent”property=”titleContent”></result>

<result column=”typeId”property=”typeId”></result>

<result column=”userId”property=”userId”></result>

<association property=”titleTypeInfo”  javaType=”com.gxa.bj.model.TypeInfo”  foreignColumn=”typeId”>


<id column=”typeId”property=”typeId”></id>

<result column=”typeName”property=”typeName”></result>

</association>

<association property=”titleUserInfo”  foreignColumn=”userId”javaType=”com.gxa.bj.model.UserInfo”>


<id column=”userId”property=”userId”></id>

<result column=”userName”property=”userName”></result>

</association>

</resultMap>

</mapper>

其中:resultMap这个节点作为结果集的配置节点。其中的id属性就是它的引用Id(其它地方引用它的时候,是通过这个id名来引用的)。

<result>节点就是对应到数据库里的表的列名和实体对象的字段。

比如:<result column=”titleName”property=”titleName”></result>

column:数据库的列名

property:类的字段名

association节点表示关联的实体对象。

后续操作同之前的一样。

2.多对1的情况

所实现的映射关系是:在帖子分类的实体对象里包含的是帖子的实体对象的集合。

实现的步骤:

1)首先建立实体关系的映射,那么就需要在分类的实体里加入帖子的集合。代码如下:

public class TypeInfo {

privateInteger typeId;

privateString typeName;

private List<TitleInfo> titleinfos;

publicList<TitleInfo> getTitleinfos() {

returntitleinfos;

}

publicvoid setTitleinfos(List<TitleInfo> titleinfos) {

this.titleinfos= titleinfos;

}

publicInteger getTypeId() {

returntypeId;

}

publicvoid setTypeId(Integer typeId) {

this.typeId= typeId;

}

publicString getTypeName() {

returntypeName;

}

publicvoid setTypeName(String typeName) {

this.typeName= typeName;

}

}

2)创建一个TypeInfoMapper的实现接口:

package com.gxa.bj.dao.imp;

import com.gxa.bj.dao.IDaoBBS;

import com.gxa.bj.model.TypeInfo;

public interface TypeInfoMapper extendsIDaoBBS<TypeInfo> {

}

3)编写相应的sql配置文件:TypeInfoMapper.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”>

<mappernamespace=”com.gxa.bj.dao.imp.TypeInfoMapper”>

<select id=”getModel”  resultMap=”typeinforesult”parameterType=”java.lang.Integer”>

Select t.*,i.*,u.*

From typeinfo t inner join titleinfo i

on t.typeid=i.typeid

left join userinfo u

on i.userid = u.userid

Where t.typeid=#{id}

</select>

<resultMap type=”com.gxa.bj.model.TypeInfo”id=”typeinforesult”>

<result column=”typeid”property=”typeId”></result>

<result column=”typename”property=”typeName”></result>


<collectionresultMap=”com.gxa.bj.dao.imp.TitleInfoMapper.TitleInfoResult”property=”titleinfos”ofType=”com.gxa.bj.model.TitleInfo”>



</collection>

</resultMap>

</mapper>

注意:collection表示的是集合的数据。property表示所对应的集合的属性名。

ofType表示集合里的数据的类型。resultMap表示的是调用的是其它的结果映射集。

由于该结果映射集不在同一个文件下,那么就需要引入其它文件下的结果集。

其它结果集的命名空间+结果集的名称。比如:

com.gxa.bj.dao.imp.TitleInfoMapper.TitleInfoResult




后面的操作同上



版权声明:本文为qq_27752831原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。