spring JdbcTemplate 的若干问题

spring的javadoc上讲getObject(String, Object[], Class) will return NULL if the result of the query is NUL
这里有0行和nullresult的区别
0行: select salary from user where 1 = 2
null result: select max(salary) from user where 1 = 2 返回就是null
0行一定抛出IncorrectResultSizeDataAccessException异常
原因如下
ResultSetMetaData rsmd = rs.getMetaData();
int nrOfColumns = rsmd.getColumnCount();这里返回ResultSet的列数
if (nrOfColumns != 1) {
throw new IncorrectResultSizeDataAccessException(
"Expected single column but found " + nrOfColumns, 1, nrOfColumns);
}
0行,多于1行,就抛异常了
最好还是用QueryForList,返回的list的size为0,就是0行

还有oracle 10g的问题,jdbc驱动版本10.1.0.20
getObject返回一个日期类型为java.util.Date
但是这个日期只有年-月-日,没有时-分-秒,因为10g对于DATE类型的列,
getObject().getClass().getName()得到 java.sql.Date
System.out.println(rs.getObject("date_created") + " " + rs.getObject("date_created").getClass());
得到 2005-10-06 class java.sql.Date
要得到全部日期,必须使用oracle.sql.TIMESTAMP
但是使用queryForObject("sql", Timestamp.class)
得到org.springframework.dao.TypeMismatchDataAccessException异常
java.sql.Timestamp] and could not be converted to required type [java.sql.Timestamp] 很是莫名其妙
只好使用java -Doracle.jdbc.V8Compatibility="true" MyApp解决

以下是对JdbcTemplate 常规用法总结:

Java代码 复制代码
  1. jdbcTemplate.execute("CREATETABLEUSER(user_idinteger,namevarchar(100))");


2、如果是UPDATE或INSERT,可以用update()方法。

Java代码 复制代码
  1. jdbcTemplate.update("INSERTINTOUSERVALUES('"
  2. +user.getId()+"','"
  3. +user.getName()+"','"
  4. +user.getSex()+"','"
  5. +user.getAge()+"')");


3、带参数的更新

Java代码 复制代码
  1. jdbcTemplate.update("UPDATEUSERSETname=?WHEREuser_id=?",newObject[]{name,id});
Java代码 复制代码
  1. jdbcTemplate.update("INSERTINTOUSERVALUES(?,?,?,?)",newObject[]{user.getId(),user.getName(),user.getSex(),user.getAge()});


4、使用JdbcTemplate进行查询时,使用queryForXXX()等方法

Java代码 复制代码
  1. intcount=jdbcTemplate.queryForInt("SELECTCOUNT(*)FROMUSER");


Java代码 复制代码
  1. Stringname=(String)jdbcTemplate.queryForObject("SELECTnameFROMUSERWHEREuser_id=?",newObject[]{id},java.lang.String.class);


Java代码 复制代码
  1. Listrows=jdbcTemplate.queryForList("SELECT*FROMUSER");


Java代码 复制代码
  1. Listrows=jdbcTemplate.queryForList("SELECT*FROMUSER");
  2. Iteratorit=rows.iterator();
  3. while(it.hasNext()){
  4. MapuserMap=(Map)it.next();
  5. System.out.print(userMap.get("user_id")+"\t");
  6. System.out.print(userMap.get("name")+"\t");
  7. System.out.print(userMap.get("sex")+"\t");
  8. System.out.println(userMap.get("age")+"\t");
  9. }



JdbcTemplate将我们使用的JDBC的流程封装起来,包括了异常的捕捉、SQL的执行、查询结果的转换等等。spring大量使用Template Method模式来封装固定流程的动作,XXXTemplate等类别都是基于这种方式的实现。
除了大量使用Template Method来封装一些底层的操作细节,spring也大量使用callback方式类回调相关类别的方法以提供JDBC相关类别的功能,使传统的JDBC的使用者也能清楚了解spring所提供的相关封装类别方法的使用。

JDBC的PreparedStatement

Java代码 复制代码
  1. finalStringid=user.getId();
  2. finalStringname=user.getName();
  3. finalStringsex=user.getSex()+"";
  4. finalintage=user.getAge();
  5. jdbcTemplate.update("INSERTINTOUSERVALUES(?,?,?,?)",
  6. newPreparedStatementSetter(){
  7. publicvoidsetValues(PreparedStatementps)throwsSQLException{
  8. ps.setString(1,id);
  9. ps.setString(2,name);
  10. ps.setString(3,sex);
  11. ps.setInt(4,age);
  12. }
  13. });


Java代码 复制代码
  1. finalUseruser=newUser();
  2. jdbcTemplate.query("SELECT*FROMUSERWHEREuser_id=?",
  3. newObject[]{id},
  4. newRowCallbackHandler(){
  5. publicvoidprocessRow(ResultSetrs)throwsSQLException{
  6. user.setId(rs.getString("user_id"));
  7. user.setName(rs.getString("name"));
  8. user.setSex(rs.getString("sex").charAt(0));
  9. user.setAge(rs.getInt("age"));
  10. }
  11. });




Java代码 复制代码
  1. classUserRowMapperimplementsRowMapper{
  2. publicObjectmapRow(ResultSetrs,intindex)throwsSQLException{
  3. Useruser=newUser();
  4. user.setId(rs.getString("user_id"));
  5. user.setName(rs.getString("name"));
  6. user.setSex(rs.getString("sex").charAt(0));
  7. user.setAge(rs.getInt("age"));
  8. returnuser;
  9. }
  10. }
  11. publicListfindAllByRowMapperResultReader(){
  12. Stringsql="SELECT*FROMUSER";
  13. returnjdbcTemplate.query(sql,newRowMapperResultReader(newUserRowMapper()));
  14. }



在getUser(id)里面使用UserRowMapper

Java代码 复制代码
  1. publicUsergetUser(finalStringid)throwsDataAccessException{
  2. Stringsql="SELECT*FROMUSERWHEREuser_id=?";
  3. finalObject[]params=newObject[]{id};
  4. Listlist=jdbcTemplate.query(sql,params,newRowMapperResultReader(newUserRowMapper()));
  5. return(User)list.get(0);
  6. }



网上收集
org.springframework.jdbc.core.PreparedStatementCreator 返回预编译SQL 不能于Object[]一起用

Java代码 复制代码
  1. publicPreparedStatementcreatePreparedStatement(Connectioncon)throwsSQLException{
  2. returncon.prepareStatement(sql);
  3. }


1.增删改
org.springframework.jdbc.core.JdbcTemplate 类(必须指定数据源dataSource)

Java代码 复制代码
  1. template.update("insertintoweb_personvalues(?,?,?)",Object[]);


Java代码 复制代码
  1. template.update("insertintoweb_personvalues(?,?,?)",newPreparedStatementSetter(){匿名内部类只能访问外部最终局部变量
  2. publicvoidsetValues(PreparedStatementps)throwsSQLException{
  3. ps.setInt(index++,3);
  4. });


org.springframework.jdbc.core.PreparedStatementSetter 接口 处理预编译SQL

Java代码 复制代码
  1. publicvoidsetValues(PreparedStatementps)throwsSQLException{
  2. ps.setInt(index++,3);
  3. }


2.查询JdbcTemplate.query(String,[Object[]/PreparedStatementSetter],RowMapper/RowCallbackHandler)
org.springframework.jdbc.core.RowMapper 记录映射接口 处理结果集

Java代码 复制代码
  1. publicObjectmapRow(ResultSetrs,intarg1)throwsSQLException{int表当前行数
  2. person.setId(rs.getInt("id"));
  3. }
  4. Listtemplate.query("select*fromweb_personwhereid=?",Object[],RowMapper);


org.springframework.jdbc.core.RowCallbackHandler 记录回调管理器接口 处理结果集

Java代码 复制代码
  1. template.query("select*fromweb_personwhereid=?",Object[],newRowCallbackHandler(){
  2. publicvoidprocessRow(ResultSetrs)throwsSQLException{
  3. person.setId(rs.getInt("id"));
  4. });

你可能感兴趣的:(java,spring,oracle,sql,jdbc)