将Spring Boot从版本1.3.3升级到1.5.9后,JDBCTemplate.queryForList无法正常工作。在(版本1.3.3)之前,查询可以返回结果,现在(版本1.5.9)只返回空列表。有人可以帮助我吗?
@Autowired
private JdbcTemplate jdbcTemplate;
private static final String CSZH_START_DATE_SQL = "select distinct month from rpt.rpt_cszh_rgst_rnk_city_monthly";
List<Map<String, Object>> rows = jdbcTemplate.queryForList(sql);