错误代码
使用JdbcTemplate查询
String sql="SELECT t.industry_code AS item, COUNT (1) AS intValue FROM company_info t GROUP BY industry_code";
List<LineChartShowBean> pollutionCityBeans = trJdbcTemplate.queryForList(sql, LineChartShowBean.class);
queryForList的第二个参数Class<T> elementType仅仅是Integer,String之类的数据类型,使用如下方法可以获得自己想要的结果:
正确的代码
String sql="SELECT t.industry_code AS item, COUNT (1) AS intValue FROM company_info t GROUP BY industry_code";
List<LineChartShowBean> list = trJdbcTemplate.query(sql,
new BeanPropertyRowMapper<>(LineChartShowBean.class));
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。