
spring rowmapper怎么获取sql的函数查询
展开全部
以下直接贴出了代码段,供参考:
public List<BigDecimal> queryForthLvSid(int pev1, int pev2) {
return getSimpleJdbcTemplate().query(queryFourthLv,
new RowMapper<BigDecimal>() {
public BigDecimal mapRow(ResultSet rs, int rowNum)
throws SQLException {
return rs.getBigDecimal("FORTH_SID");
}
}, pev1, pev2);
}
rowmapper是一个可以存放任何对象的集合。
存放Sring类型的list
public List<String> queryStoreSid(BigDecimal fourthLv) {
return getSimpleJdbcTemplate().query(queryStroeInfo,
new RowMapper<String>() {
public String mapRow(ResultSet rs, int rowNum)
throws SQLException {
return rs.getString("STORE_ID");r
}
}, fourthLv);
}
存放object类型的list
return getSimpleJdbcTemplate().getJdbcOperations().query(
queryVisitPlan.toString(), new RowMapper<PointBo>() {
PointBo pointBo;
public PointBo mapRow(ResultSet rs, int rowNum)
throws SQLException {
pointBo = new PointBo();
pointBo.setLat(rs.getBigDecimal("LATITUDE")
.doubleValue());
pointBo.setLon(rs.getBigDecimal("LONGITUDE")
.doubleValue());
return pointBo;
}
}, STORE_ID);
public List<BigDecimal> queryForthLvSid(int pev1, int pev2) {
return getSimpleJdbcTemplate().query(queryFourthLv,
new RowMapper<BigDecimal>() {
public BigDecimal mapRow(ResultSet rs, int rowNum)
throws SQLException {
return rs.getBigDecimal("FORTH_SID");
}
}, pev1, pev2);
}
rowmapper是一个可以存放任何对象的集合。
存放Sring类型的list
public List<String> queryStoreSid(BigDecimal fourthLv) {
return getSimpleJdbcTemplate().query(queryStroeInfo,
new RowMapper<String>() {
public String mapRow(ResultSet rs, int rowNum)
throws SQLException {
return rs.getString("STORE_ID");r
}
}, fourthLv);
}
存放object类型的list
return getSimpleJdbcTemplate().getJdbcOperations().query(
queryVisitPlan.toString(), new RowMapper<PointBo>() {
PointBo pointBo;
public PointBo mapRow(ResultSet rs, int rowNum)
throws SQLException {
pointBo = new PointBo();
pointBo.setLat(rs.getBigDecimal("LATITUDE")
.doubleValue());
pointBo.setLon(rs.getBigDecimal("LONGITUDE")
.doubleValue());
return pointBo;
}
}, STORE_ID);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询