mybatis结果返回List集合

1.xml文件


    

2.dao层


        public List> selectList();

3.测试

    public static void main(String[] args) throws IOException {
        String resource = "mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        SqlSession session = sqlSessionFactory.openSession();
        
        
        EmployeeMapper mapper = session.getMapper(EmployeeMapper.class);
        List> selectList = mapper.selectList();
        for (Map map : selectList) {
            for (Map.Entry m : map.entrySet()) {
                System.out.print(m.getKey()+"--"+m.getValue());
            }
        }
    }

 

你可能感兴趣的:(后台,java)