gpt4 book ai didi

java - 是否有一种 DRY 方法来合并 RowMappers 的相同代码?

转载 作者:搜寻专家 更新时间:2023-11-01 03:25:11 25 4
gpt4 key购买 nike

我正在使用 JDBC,我的许多类都有一个内部 RowMapper 类,如下所示:

public class Foo {
class AppleRows implements RowMapper<Apple> {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = new Apple();
a.setName(rs.getString("Name"));
}
}

class AppleRowsJoinedWithSomethingElse implements RowMapper<Apple> {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = new Apple();
a.setName(rs.getString("Name"));
a.setSomethingElse(rs.getString("SomethingElse"));
}
}
}

在上面的示例中,行 a.setName(rs.getString("Name")) 被复制了。这只是一个示例,但在我的实际代码中有超过 10 个这样的字段。我想知道是否有更好的方法来做到这一点?

注意:我需要不同的映射器,因为我在将结果与另一个表连接起来(获取更多字段)的某些地方使用它们。

最佳答案

您可以扩展 + 使用super.mapRow()...

public class Foo {
class AppleRows implements RowMapper<Apple> {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = new Apple();
a.setName(rs.getString("Name"));
return a;
}
}

class AppleRowsJoinedWithSomethingElse extends AppleRows {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = super.mapRow(rs, rowNum);
a.setSomethingElse(rs.getString("SomethingElse"));
return a;
}
}
}

或者简单地委托(delegate),如果你不喜欢使用继承作为代码重用的机制:

public class Foo {
class AppleRows implements RowMapper<Apple> {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = new Apple();
a.setName(rs.getString("Name"));
return a;
}
}

class AppleRowsJoinedWithSomethingElse implements RowMapper<Apple> {
public Apple mapRow(ResultSet rs, int rowNum) throws SQLException {
Apple a = new AppleRows().mapRow(rs, rowNum);
a.setSomethingElse(rs.getString("SomethingElse"));
return a;
}
}
}

关于java - 是否有一种 DRY 方法来合并 RowMappers 的相同代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15772303/

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