zl程序教程

您现在的位置是:首页 >  后端

当前栏目

mybatis的mapper返回map结果集(springboot)

SpringBootMapmybatis 返回 结果 Mapper
2023-09-14 09:03:39 时间

通过MapKey指定map的key值

@MapKey("id")
Map<Long, UserInfo> getUserInfoMap();

@MapKey("id")
Map<Long, Map<String,Object>> getUserValueMap();

map的value为java类

<resultMap id="UserResultMap" type="com.xixicat.domain.UserInfo">
        <result property="id" column="id" />
        <result property="username" column="username" />
        <result property="sex" column="sex" />
    </resultMap>
<select id="getUserInfoMap" resultMap="UserResultMap">
   select id,username,sex from user_info
</select>

map的value为map

 
<select id="getUserValueMap" resultType="map" >
        select id,username,sex from user_info
        from user_info
</select>