Hibernate實(shí)現(xiàn)批量添加數(shù)據(jù)的方法
本文實(shí)例講述了Hibernate實(shí)現(xiàn)批量添加數(shù)據(jù)的方法。分享給大家供大家參考,具體如下:
1.Hibernate_016_BatchAddData程序目錄結(jié)構(gòu):
2.lib目錄下所引入的jar包:
3.MedicineDao.java源代碼:
package com.xqh.dao; import java.util.List; import org.hibernate.Session; import com.xqh.model.Medicine; import com.xqh.util.HibernateUtil; /** * 藥品數(shù)據(jù)庫操作類 * */ public class MedicineDao { /** * 批量保存藥品 * * @param ms * List集合 */ public void saveMedicines(List<Medicine> ms) { Session session = null; if (ms != null && ms.size() > 0) { try { session = HibernateUtil.getSession(); // 獲取Session session.beginTransaction(); // 開啟事物 Medicine medicine = null; // 創(chuàng)建藥品對(duì)象 // 循環(huán)獲取藥品對(duì)象 for (int i = 0; i < ms.size(); i++) { medicine = (Medicine) ms.get(i); // 獲取藥品 session.save(medicine); // 保存藥品對(duì)象 // 批插入的對(duì)象立即寫入數(shù)據(jù)庫并釋放內(nèi)存 if (i % 10 == 0) { session.flush(); session.clear(); } } session.getTransaction().commit(); // 提交事物 } catch (Exception e) { e.printStackTrace(); // 打印錯(cuò)誤信息 session.getTransaction().rollback(); // 出錯(cuò)將回滾事物 } finally { HibernateUtil.closeSession(session); // 關(guān)閉Session } } } }
4.Medicine.java源代碼:
package com.xqh.model; /** * 藥品持久化類 */ public class Medicine { private Integer id; //id號(hào) private String name; //藥品名稱 private double price; //價(jià)格 private String factoryAdd; //出廠地址 public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getFactoryAdd() { return factoryAdd; } public void setFactoryAdd(String factoryAdd) { this.factoryAdd = factoryAdd; } }
5.Medicine.hbm.xml源代碼:
<?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="com.xqh.model.Medicine" table="tb_medicine_batch"> <id name="id"> <generator class="native"/> </id> <property name="name" not-null="true" length="200" /> <property name="price" not-null="true"/> <property name="factoryAdd" length="200"/> </class> </hibernate-mapping>
6.SaveMedicine.java源代碼:
package com.xqh.servlet; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.xqh.dao.MedicineDao; import com.xqh.model.Medicine; public class SaveMedicine extends HttpServlet { private static final long serialVersionUID = 3743334039515411666L; public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 藥品名稱 String names[] = request.getParameterValues("name"); // 價(jià)格 String prices[] = request.getParameterValues("price"); // 出廠地址 String adds[] = request.getParameterValues("factoryAdd"); // 有效性判斷 if(names != null && prices != null && adds != null){ if(names.length == prices.length && names.length == adds.length){ // 實(shí)例化一個(gè)List集合 List<Medicine> ms = new ArrayList<Medicine>(); Medicine m = null; // 藥品對(duì)象 // 依次實(shí)例化藥品對(duì)象并添加到集合中 for (int i = 0; i < names.length; i++) { m = new Medicine(); // 實(shí)例化藥品 // 對(duì)屬性賦值 m.setName(names[i]); m.setPrice(Double.parseDouble(prices[i])); m.setFactoryAdd(adds[i]); ms.add(m); // 添加到集合中 } // 實(shí)例化MedicineDao對(duì)象 MedicineDao dao = new MedicineDao(); dao.saveMedicines(ms); // 批量保存藥品 request.setAttribute("info", "藥品信息保存成功?。?!"); } } // 轉(zhuǎn)發(fā)到result.jsp頁面 request.getRequestDispatcher("result.jsp").forward(request, response); } }
7.CharacterEncodingFilter.java源代碼:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.xqh.util; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; /** * 字符編碼過濾器 */ public class CharacterEncodingFilter implements Filter{ protected String encoding = null; protected FilterConfig filterConfig = null; public void init(FilterConfig filterConfig) throws ServletException { this.filterConfig = filterConfig; this.encoding = filterConfig.getInitParameter("encoding"); } public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { if (encoding != null) { request.setCharacterEncoding(encoding); response.setContentType("text/html; charset="+encoding); } chain.doFilter(request, response); } public void destroy() { this.encoding = null; this.filterConfig = null; } }
8.HibernateUtil.java源代碼:
package com.xqh.util; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; /** * Hibernate初始化類,用于獲取Session、SessionFactory 及關(guān)閉Session */ public class HibernateUtil { // SessionFactory對(duì)象 private static SessionFactory factory = null; // 靜態(tài)塊 static { try { // 加載Hibernate配置文件 Configuration cfg = new Configuration().configure(); // 實(shí)例化SessionFactory factory = cfg.buildSessionFactory(); } catch (HibernateException e) { e.printStackTrace(); } } /** * 獲取Session對(duì)象 * @return Session對(duì)象 */ public static Session getSession() { //如果SessionFacroty不為空,則開啟Session Session session = (factory != null) ? factory.openSession() : null; return session; } /** * 獲取SessionFactory對(duì)象 * @return SessionFactory對(duì)象 */ public static SessionFactory getSessionFactory() { return factory; } /** * 關(guān)閉Session * @param session對(duì)象 */ public static void closeSession(Session session) { if (session != null) { if (session.isOpen()) { session.close(); // 關(guān)閉Session } } } }
9.hibernate.cfg.xml源代碼:
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- 方言 --> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 數(shù)據(jù)庫連接 --> <property name="connection.url">jdbc:mysql://localhost:3306/learn</property> <!-- 數(shù)據(jù)庫連接用戶名 --> <property name="connection.username">root</property> <!-- 數(shù)據(jù)庫連接密碼 --> <property name="connection.password">1120</property> <!-- 數(shù)據(jù)庫驅(qū)動(dòng) --> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <!-- 打印SQL語句 --> <property name="show_sql">true</property> <!-- 自動(dòng)建表 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- 映射文件 --> <mapping resource="com/xqh/model/Medicine.hbm.xml"/> </session-factory> </hibernate-configuration>
10.log4j.properties源代碼:
### direct log messages to stdout ### log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n ### direct messages to file hibernate.log ### #log4j.appender.file=org.apache.log4j.FileAppender #log4j.appender.file.File=hibernate.log #log4j.appender.file.layout=org.apache.log4j.PatternLayout #log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n ### set log levels - for more verbose logging change 'info' to 'debug' ### log4j.rootLogger=warn, stdout #log4j.logger.org.hibernate=info #log4j.logger.org.hibernate=debug ### log HQL query parser activity #log4j.logger.org.hibernate.hql.ast.AST=debug ### log just the SQL #log4j.logger.org.hibernate.SQL=debug ### log JDBC bind parameters ### #log4j.logger.org.hibernate.type=info #log4j.logger.org.hibernate.type=debug ### log schema export/update ### #log4j.logger.org.hibernate.tool.hbm2ddl=debug ### log HQL parse trees #log4j.logger.org.hibernate.hql=debug ### log cache activity ### #log4j.logger.org.hibernate.cache=debug ### log transaction activity #log4j.logger.org.hibernate.transaction=debug ### log JDBC resource acquisition #log4j.logger.org.hibernate.jdbc=debug ### enable the following line if you want to track down connection ### ### leakages when using DriverManagerConnectionProvider ### #log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trace
11.index.jsp源代碼:
<%@ page language="java" contentType="text/html" pageEncoding="GBK"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>批量添加藥品信息</title> <style type="text/css"> td { background: #EBEBEB; font-family: Verdana; font-size: 12px; background-color: #EBEBEB; color: black; line-height: 20px; height: 30px; } </style> <script type="text/javascript"> function add(){ var a = document.getElementById("a"); var b = document.getElementById("b"); b.innerHTML += a.innerHTML; } function reduce() { var a = document.getElementById("a"); var b = document.getElementById("b"); var stra = a.innerHTML; var strb = b.innerHTML; b.innerHTML = strb.substring(0, strb.length - stra.length); } function save(formName){ for(i=0;i<formName.length;i++){ if(formName.elements[i].value==""){ alert("請(qǐng)?zhí)顚懲暾畔?"); return false; } } } </script> </head> <body onload="add()"> <form action="SaveMedicine" method="post" onsubmit="return save(this);"> <table align="center" border="0" cellpadding="3" cellspacing="1" width="600"> <tr> <td align="center"> <br> <h1> 批量添加藥品信息 </h1> </td> </tr> <tr> <td> <div id="b"></div> </td> </tr> <tr> <td> <input type="button" value="添加一行 " onclick="add()"> <input type="button" value="減少一行" onclick="reduce()"> <input type="submit" value="批量添加到數(shù)據(jù)庫"> </td> </tr> </table> </form> <div id="a" style="display: none"> <table align="center" border="0"> <tr> <td> 名稱: </td> <td> <input type="text" name="name" size="13"> </td> <td> 單價(jià): </td> <td> <input type="text" name="price" size="13"> </td> <td> 廠址: </td> <td> <input type="text" name="factoryAdd" size="30"> </td> </tr> </table> </div> </body> </html>
12.result.jsp源代碼:
<%@ page language="java" contentType="text/html" pageEncoding="GBK"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>結(jié)果信息</title> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <div align="center"> <font color="red" size="12px;" style="font-weight: bold;"> ${info} </font> <br><br><br><br> <a href="index.jsp">返回</a> </div> </body> </html>
13.數(shù)據(jù)表tb_medicine_batch結(jié)構(gòu):
14.程序運(yùn)行結(jié)果截圖:
希望本文所述對(duì)大家基于Hibernate框架的Java程序設(shè)計(jì)有所幫助。
相關(guān)文章
Spring 中@Validated 分組校驗(yàn)的使用解析
這篇文章主要介紹了Spring 中@Validated 分組校驗(yàn)的使用解析,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2021-10-10使用HttpClient調(diào)用接口的實(shí)例講解
下面小編就為大家?guī)硪黄褂肏ttpClient調(diào)用接口的實(shí)例講解。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-10-10intellij idea修改maven配置時(shí)總是恢復(fù)默認(rèn)配置的解決方法idea版本(2020.2.x)
這篇文章主要介紹了intellij idea修改maven配置時(shí)總是恢復(fù)默認(rèn)配置的解決方法idea版本(2020.2.x),本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-08-08Java Selenium實(shí)現(xiàn)多窗口切換的示例代碼
這篇文章主要介紹了Java Selenium實(shí)現(xiàn)多窗口切換的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-09-09java使用EasyExcel實(shí)現(xiàn)Sheet的復(fù)制與填充
EasyExcel是一個(gè)非常有用的工具,它提供了強(qiáng)大的模板填充功能,可以輕松解決各種業(yè)務(wù)需求,本文主要為大家介紹了如何使用EasyExcel實(shí)現(xiàn)模板Sheet復(fù)制與填充,需要的可以參考下2023-10-10SpringBoot URL帶有特殊字符([]/{}等),報(bào)400錯(cuò)誤的解決
這篇文章主要介紹了SpringBoot URL帶有特殊字符([]/{}等),報(bào)400錯(cuò)誤的解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-02-02