我正在将Spring 3应用程序升级到Spring 4.我的@Repository
有ParameterizedRowMapper
对象将sql结果映射到对象.但是自从Spring 4那个界面已经deprecated“赞成常规SingleColumnRowMapper
”.但是我使用映射器来映射多个列.我是如何使用SingleColumnRowMapper映射多个列的?或者我的意思是做一些完全不同的事情?
例如,这是我现在的代码类型:
private static final ParameterizedRowMappersqlException {
return new Thing(rs.getLong(1),rs.getLong(2),rs.getInt(3));
}
};
@Override
public List
我现在应该如何实现这种功能?
最佳答案
Javadoc似乎是错的. Spring Framework设计者可能打算使用RowMapper< Thing>用于替换ParameterizedRowMapper< Thing>的接口.也就是说,使用基本接口.
原文链接:https://www.f2er.com/spring/431672.html