gpt4 book ai didi

java - 为给定的 pojo 类型为 myBatis3 设计 INSERT 映射器

转载 作者:行者123 更新时间:2023-12-02 10:40:24 27 4
gpt4 key购买 nike

如果我有一个类似的 pojo 模型,myBatis3 中的 INSERT 映射器会是什么样子

class DR {
FormatType format;
}

class SQLDR extends DR{
String sql;
}

class PDR extends DR {
Predicate predicate;
}

class Download {
DR request;
String status;
long size;
}

我想在表中插入下载对象,如何在 myBatis3 中设计 INSERT 映射器,因为我在运行时设置了 SQLDR 和 PDR 类型的下载,它应该能够根据格式类型获取值并进行设置。

我正在尝试这样的映射器,它不起作用

<sql id="DOWNLOAD_FIELD_TYPES">
#{key,jdbcType=VARCHAR},
<choose>
<when test="format = 'SQL'"> #{request.sql,jdbcType=VARCHAR},</when>
<otherwise> #{request.predicate,jdbcType=VARCHAR}, </otherwise>
</choose>
#{status,jdbcType=OTHER},
#{size,jdbcType=BIGINT},
#{request.format,jdbcType=OTHER},
</sql>

<sql id="DOWNLOAD_FIELDS">
key,filter,status,size,format
</sql>

<insert id="create" parameterType="Download">
INSERT INTO download(<include refid="DOWNLOAD_FIELDS"/>)
VALUES(<include refid="DOWNLOAD_FIELD_TYPES"/>)
</insert>

原因:org.apache.ibatis.reflection.ReflectionException:名为“sql”的属性没有 getter。在“DR 类”中

最佳答案

在这种情况下,最简单的方法是使 DR 抽象并为其添加一个方法:

abstract class DR {
public String getFilter();
}

class SQLDR {
String sql;
public String getFilter() {
return sql;
}
}

class PDR {
Predicate predicate;
public String getFilter() {
return toString(predicate);
}
}

然后在映射器中无条件地使用这个新属性:

<sql id="DOWNLOAD_FIELD_TYPES">
#{key,jdbcType=VARCHAR},
#{request.filter},
#{status,jdbcType=OTHER},
#{size,jdbcType=BIGINT},
#{request.format,jdbcType=OTHER},
</sql>

关于java - 为给定的 pojo 类型为 myBatis3 设计 INSERT 映射器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52950439/

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