gpt4 book ai didi

java - 从数据库中选择后如何使用mybatis获取结果类型作为列表

转载 作者:行者123 更新时间:2023-11-30 03:24:18 24 4
gpt4 key购买 nike

在我的项目中,我使用 mybatis 作为 dao,我想获得结果,例如从数据库中选择行的数组列表

我有一个 Employee 类和一个 dao 接口(interface) Employee.java

public class Employee {
private int id;
private String name;
private String sex;
private String phonenumber;
}

EmpInterface.java

public interface EmpInterface {
public ArrayList<Employeer> selectAll();
}

mybatis的mapper.xml中的select标签应该怎么写?

最佳答案

类似这样的:

<resultMap id="BaseResultMap" type="package.Employee">
<id column="ID" jdbcType="NUMERIC" property="id" />
<result column="NAME" jdbcType="VARCHAR" property="name" />
<result column="SEX" jdbcType="VARCHAR" property="sex" />
<result column="PHONE_NUMBER" jdbcType="VARCHAR" property="phonenumber" />
</resultMap>
<select id="selectAll" resultMap="BaseResultMap">
SELECT
emp.ID,
emp.NAME,
emp.SEX,
emp.PHONE_NUMBER
FROM EMPLOYEES emp
</select>

关于java - 从数据库中选择后如何使用mybatis获取结果类型作为列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30638178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com