postgres JdbcTemplate 新增记录后的返回值

环境

 pom.xml 的依赖包

 
      
          postgresql
          postgresql
          8.4-702.jdbc4
      

     
          commons-pool
          commons-pool
          1.6
      

      
          commons-dbcp
          commons-dbcp
          1.4
      

      
          commons-logging
          commons-logging
          1.1.1
      

      
          org.springframework
          spring
          2.5.6.SEC03
      

 

资源文件夹 (src/main/resources) bean.xml


            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
        xmlns:context="http://www.springframework.org/schema/context"  
        xmlns:aop="http://www.springframework.org/schema/aop"  
        xmlns:tx="http://www.springframework.org/schema/tx"  
        xsi:schemaLocation="http://www.springframework.org/schema/beans  
               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
               http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd  
               http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
               http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">  
      

         
             
             
             
             
             
             
             
             
             
             
             
             
               
               
               
               
              
               
               
               
       
 
         
             
       
        
         
             
       
          
         
             
       
          
           
   


类PersonDaoImpl的实现方法

public int addPerson(PersonBean person) {
        int key = 0;
        KeyHolder holder = new GeneratedKeyHolder();
        try {
            jdbcTemplate.update(
                    new PreparedStatementCreator() {
                        public PreparedStatement createPreparedStatement(Connection con)    throws SQLException {
                            int i = 1;
                            PreparedStatement ps = con.prepareStatement(
                                    "insert into person(name) values(?)",
                                    new String[] { "id" } //id为Sequence所产生,即表所定义的字段名称

/*   person 表在postgresql 的schema



CREATE SEQUENCE seq_id
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 14631
  CACHE 1;
ALTER TABLE seq_id
  OWNER TO postgres;
GRANT ALL ON TABLE seq_id TO postgres;
GRANT ALL ON TABLE seq_id TO public;

CREATE TABLE person
(
  id integer NOT NULL DEFAULT nextval(('"seq_id"'::text)::regclass),
  name character varying(1024) NOT NULL DEFAULT ''::character varying
)
WITH (
  OIDS=FALSE
);
ALTER TABLE person
  OWNER TO postgres;


*/                                    );
                            ps.setString(i++, "jack" + i);
                            return ps;
                        }
                    },
                    holder
            );
            key = holder.getKey().intValue();
        }catch (DataAccessException e) {
            e.printStackTrace() ;
        }
        return key;
    }



你可能感兴趣的:(java,tool)