标签:默认 list spring .class for 返回 int integer 参数
1.查询一行数据并返回int型结果jdbcTemplate.queryForInt("select count(*) from test");
jdbcTemplate.queryForMap("select * from test where name=‘name5‘");
jdbcTemplate.queryForObject("select count(*) from test", Integer.class);
jdbcTemplate.queryForList("select * from test");
jdbcTemplate.queryForList("select name from test where name=?", new Object[]{"name5"}, String.class);
SqlRowSet rs = jdbcTemplate.queryForRowSet("select * from test");
标签:默认 list spring .class for 返回 int integer 参数
原文地址:http://blog.51cto.com/1197822/2157267