Mybatis返回Map数据方式示例

发布时间:2023-12-11 16:00

目录
  • 一. 方式1
    • 接口
    • 调用
  • 二. 方式2
    • 接口
    • 调用
  • 三. 方式3
    • 接口
    • 调用

一. 方式1

接口

public interface UserMapper {

    List> selectTestData1();
}




    

调用

@Service
public class MapTest implements CommandLineRunner {

    @Autowired
    private UserMapper mapper;

    @Override
    public void run(String... args) throws Exception {

        List> listData1 = mapper.selectTestData1();
        for (Map map : listData1) {
            System.out.println(map);
        }
    }
}

\"Mybatis返回Map数据方式示例_第1张图片\"

二. 方式2

接口

import org.apache.ibatis.annotations.MapKey;

public interface UserMapper {

    // 指定的key必须是唯一的,否则重复的重复map的key会覆盖,如果查询的字段中没有唯一值,可以通过rowno来指定
    @MapKey(\"rowno\")
    Map> selectTestData2();
}



	
    

调用

@Service
public class MapTest implements CommandLineRunner {

    @Autowired
    private UserMapper mapper;

    @Override
    public void run(String... args) throws Exception {

        Map> mapData1 = mapper.selectTestData2();
        System.out.println(mapData1);
    }
}

\"Mybatis返回Map数据方式示例_第2张图片\"

三. 方式3

接口

import org.apache.ibatis.annotations.MapKey;

public interface UserMapper {

    // 指定的key名称必须是User实体类中的属性
    @MapKey(\"id\")
    Map selectTestData3();
}




    
    

调用

@Service
public class MapTest implements CommandLineRunner {

    @Autowired
    private UserMapper mapper;

    @Override
    public void run(String... args) throws Exception {

        Map mapData2 = mapper.selectTestData3();
        Set> entries = mapData2.entrySet();
        for (Map.Entry entry : entries) {
            User user = entry.getValue();
            System.out.println(user);
        }
    }
}

\"Mybatis返回Map数据方式示例_第3张图片\"

以上就是Mybatis返回Map数据方式示例的详细内容,更多关于Mybatis返回Map数据的资料请关注脚本之家其它相关文章!

ItVuer - 免责声明 - 关于我们 - 联系我们

本网站信息来源于互联网,如有侵权请联系:561261067@qq.com

桂ICP备16001015号