1.我用的spring boot2.0,jdbcTemplate查询数据库的时候,日期值都加了1,不知道是为什么?数据库是mysql5.7,以下是我的代码部分:String sql = "select * from v_item_data_last t where t.index_type_id=? order by t.index_order asc,t.target_order asc";List<Map<String, Object>> data_list = this.jdbcTemplate.queryForList(sql, new Object[] { indexType });这个sql语句里有一个日期字段,我在navicat中直接执行该语句正常,但是放到 jdbcTemplate中执行,日期字段自动加了1,求帮助?
添加回答
举报
0/150
提交
取消