首先 Spring jdbc API
http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/jdbc/core/JdbcTemplate.html
数据库查询函数:
jdbcTemplate.query(sql,new Object[]{UserID,password});
sql为提交的SQL语句,允许使用带?的参数占位符,queryForInt()会自动将后面的UserID、password依次代入。
spring 3.2.2之后,jdbctemplate中的queryForInt、queryForLong等已经被标记过时,可以使用
queryForObject(String sql, Class<T> requiredType)
进行代替,需要返回的是什么类型,就在第三个参数写什么类型。比如int类型就写Integer.class. long类型就写Long.class