• Hibernate JDBC 批量插入


  • public void createRolePermissionBySql(final String roleId,final String[] permIds){   
  •            
  •         getHibernateTemplate().execute(new HibernateCallback() {   
  •             public Object doInHibernate(Session session)   
  •                     throws HibernateException, SQLException {   
  •                 if(permIds==null||permIds.length==0)   
  •                           return null;   
  •                 Connection conn=session.connection();   
  •                 PreparedStatement ps=null;   
  •                 String sql=" insert into base_role_permission (ROLE_PERM_ID,PERM_ID,ROLE_ID,CREATE_DATE)" +   
  •                            " values (?,?,?,?) ";   
  •                 ps=conn.prepareStatement(sql);   
  •                 if(log.isDebugEnabled())   
  •                        log.debug("batch add base_role_permission:"+sql);   
  •                 UUIDHexGenerator uuidGenerator=null;   
  •                 for(String permId:permIds){   
  •                     uuidGenerator=new UUIDHexGenerator();   
  •                     ps.setString(1,uuidGenerator.generate(nullnull).toString());   
  •                     ps.setString(2,permId);   
  •                     ps.setString(3, roleId);   
  •                     ps.setDate(4, DateUtils.getJavaSqlDate());   
  •                     ps.addBatch();   
  •                 }   
  •                 int[] counts=ps.executeBatch();   
  •                 ps.close();   
  •                 session.flush();   
  •                 session.close();   
  •                 return null;   
  •             }   
  •         });   
  •     }   
  •      
  • 相关阅读:
    0.1+0.2!==0.3
    标准盒模型IE盒模型
    Vue自定义组件通过v-model通信
    vue-cli3.0 使用 postcss-pxtorem px转rem
    render函数、createElement函数
    mixins(混入)
    vue.extend与vue.component
    js事件系列
    vue脚手架项目结构
    python模块和包
  • 原文地址:https://www.cnblogs.com/kevinge/p/1387975.html
  • Copyright © 2020-2023  润新知