1、用户表,角色表,用户角色关联表
2、实体类设置对应关系
用户表
uerid;
角色表Entity;
3、用户map.xml配置
<resultMap id="BaseResultMap" type="用户Entity" >
<association property="角色表Entity" javaType="角色表DAO.selectByPrimaryKey" column="user_id">
</association>
</resultMap>
4、角色map.xml配置
<select id="selectByPrimaryKey">
sql文=查询角色表和用户角色关联表,条件是用户id
</select>
5、结果展示对象包含角色对象