Hibernate5-唯一查詢和彙總查詢

來源:互聯網
上載者:User

標籤:hibernate5-唯一查詢和彙總查詢

1.建立項目,項目名稱hibernatedemo8,目錄結構

650) this.width=650;" src="https://s2.51cto.com/wyfs02/M01/8F/56/wKiom1jbUtOC_XvJAAAuFPz3osI396.png-wh_500x0-wm_3-wmp_4-s_2209633937.png" title="QQ20170329142223.png" alt="wKiom1jbUtOC_XvJAAAuFPz3osI396.png-wh_50" />


2.在項目中建立lib目錄存放jar檔案,目錄結構

650) this.width=650;" src="https://s4.51cto.com/wyfs02/M01/8F/54/wKioL1jbUvjipkl7AACN0Wp2Aoc477.png-wh_500x0-wm_3-wmp_4-s_427508385.png" title="QQ20170329142302.png" alt="wKioL1jbUvjipkl7AACN0Wp2Aoc477.png-wh_50" />


3.在src目錄中建立實體Bean Forum,包名(com.mycompany.demo.bean),

650) this.width=650;" src="https://s3.51cto.com/wyfs02/M02/8F/56/wKiom1jbUyygLm0LAABEhsnzq78128.png-wh_500x0-wm_3-wmp_4-s_1381791338.png" title="QQ20170329142353.png" alt="wKiom1jbUyygLm0LAABEhsnzq78128.png-wh_50" />


4.實體Bean Forum的內容如下
package com.mycompany.demo.bean;public class Forum {private int fid;private String name;public Forum() {super();}public Forum(String name) {super();this.name = name;}public int getFid() {return fid;}public void setFid(int fid) {this.fid = fid;}public String getName() {return name;}public void setName(String name) {this.name = name;}@Overridepublic int hashCode() {final int prime = 31;int result = 1;result = prime * result + fid;result = prime * result + ((name == null) ? 0 : name.hashCode());return result;}@Overridepublic boolean equals(Object obj) {if (this == obj)return true;if (obj == null)return false;if (getClass() != obj.getClass())return false;Forum other = (Forum) obj;if (fid != other.fid)return false;if (name == null) {if (other.name != null)return false;} else if (!name.equals(other.name))return false;return true;}}


5.在src目錄中建立實體Bean Forum的對應檔Forum.hbm.xml,包名(com.mycompany.demo.bean),

650) this.width=650;" src="https://s1.51cto.com/wyfs02/M02/8F/54/wKioL1jbU2_zAXHGAABCwqXFTpw280.png-wh_500x0-wm_3-wmp_4-s_3735782374.png" title="QQ20170329142501.png" alt="wKioL1jbU2_zAXHGAABCwqXFTpw280.png-wh_50" />


6.對應檔Forum.hbm.xml的內容如下
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE hibernate-mapping PUBLIC  "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <!--package:指定<class/>所在的包  --><hibernate-mapping package="com.mycompany.demo.bean"><!--name:類名table:表名 catalog:資料庫名稱,預設為hibernate.cfg.xml中配置的資料庫名稱 -->   <class name="Forum" table="hnsq_forum" catalog="b_shequ_two">      <meta attribute="class-description">         This class contains the forum detail.       </meta>      <!--      name:屬性名稱      colum:列名        -->      <id name="fid" type="int" column="fid">      <!--      increment:hibernate維護主索引值      identity:資料庫自增長      sequence:序列      native:根據不同的資料庫選擇建置原則      uuid:通過UUID演算法產生,實際使用較多      assigned:手工設定       -->         <generator class="native"/>      </id>            <!--      length:位元組長度      type:欄位類型,支援java和hibernate類型      not-null:非空約束      unique:唯一性限制式       -->      <property name="name" column="name" type="string" length="50" not-null="true" unique="false"/>   </class></hibernate-mapping>


7.在src目錄中建立工具類 HbnUtil,包名(com.mycompany.demo.util),

650) this.width=650;" src="https://s1.51cto.com/wyfs02/M00/8F/54/wKioL1jbU7Szdh7EAAA_xqBXoiw464.png-wh_500x0-wm_3-wmp_4-s_1587686218.png" title="QQ20170329142611.png" alt="wKioL1jbU7Szdh7EAAA_xqBXoiw464.png-wh_50" />


8.工具類 HbnUtil的內容如下
package com.mycompany.demo.util;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.cfg.Configuration;public class HbnUtil {private static SessionFactory sessionFactory;public static Session getSession(){if(sessionFactory == null || sessionFactory.isClosed()){sessionFactory = new Configuration().configure().buildSessionFactory();}return sessionFactory.getCurrentSession();}}


9.在src目錄中建立Hibernate的設定檔hibernate.cfg.xml,

650) this.width=650;" src="https://s4.51cto.com/wyfs02/M01/8F/54/wKioL1jbU-vT_fiMAAA7ZTnF4Vo548.png-wh_500x0-wm_3-wmp_4-s_1763220577.png" title="QQ20170329142704.png" alt="wKioL1jbU-vT_fiMAAA7ZTnF4Vo548.png-wh_50" />


10.Hibernate的設定檔hibernate.cfg.xml的內容如下
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE hibernate-configuration SYSTEM "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration>   <session-factory>   <!-- 方言,可以從Hibernate核心jar(hibernate-core-x.x.x.Finall.jar)   檔案中的or.hibernate.dialect包中找到相應的類,類的全名就是 -->   <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>   <!-- 驅動 -->   <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>   <!-- 資料庫連接地址 -->   <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/b_shequ_two</property>   <!-- 使用者名稱 -->   <property name="hibernate.connection.username">      root   </property>   <!-- 密碼 -->   <property name="hibernate.connection.password"></property>   <!--   create:每次都新建立,如果存在就刪除   create-drop:建立新表,sessionFactory關閉,表會刪除   update :表欄位增加,會同步,欄位減少不同步,資料改變會同步修改    -->   <property name="hibernate.hbm2ddl.auto">update</property>   <!-- 輸出sql -->   <property name="hibernate.show_sql">true</property>   <!-- 格式化sql -->   <property name="hibernate.format_sql">true</property>   <!-- 事務環境一個線程對一個事務   thread:本地事務環境   jta:分散式交易環境   SpringSessionContext:用於ssh整合    -->   <property name="hibernate.current_session_context_class">thread</property>        <!-- 使用c3p0資料來源 -->   <property name="hibernate.connection.provider_class">       org.hibernate.c3p0.internal.C3P0ConnectionProvider   </property>    <!-- List of XML mapping files -->   <mapping resource="com/mycompany/demo/bean/Forum.hbm.xml"/></session-factory></hibernate-configuration>


11.在項目中建立test目錄存放測試檔案,檔案名稱ManageForum,包名(com.mycompany.demo.bean),目錄結構

650) this.width=650;" src="https://s4.51cto.com/wyfs02/M02/8F/56/wKiom1jbVCCjXFq8AAA3ZjZYAhw588.png-wh_500x0-wm_3-wmp_4-s_1498994919.png" title="QQ20170329142757.png" alt="wKiom1jbVCCjXFq8AAA3ZjZYAhw588.png-wh_50" />


12.ManageForum測試類別的內容如下
package com.mycompany.demo.bean;import java.math.BigInteger;import java.util.List;import org.hibernate.HibernateException;import org.hibernate.Query;import org.hibernate.SQLQuery;import org.hibernate.Session;import org.hibernate.Transaction;import org.hibernate.criterion.Order;import org.hibernate.criterion.Projections;import org.hibernate.criterion.Restrictions;import org.junit.Before;import org.junit.Test;import com.mycompany.demo.util.HbnUtil;public class ManageForum {private Session session;@Beforepublic void init(){session = HbnUtil.getSession();}/* * 唯一性查詢-SQL */@Testpublic void testUniqueSQL(){try {session.beginTransaction();String sql = "SELECT * FROM hnsq_forum WHERE fid = ?";Forum forum = (Forum) session.createSQLQuery(sql).addEntity(Forum.class).setInteger(0, 54).uniqueResult();System.out.println(forum.getName());session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}/* * 唯一性查詢-HQL */@Testpublic void testUniqueHQL(){try {session.beginTransaction();String sql = "FROM Forum WHERE fid = ?";Forum forum = (Forum) session.createQuery(sql).setInteger(0, 54).uniqueResult();System.out.println(forum.getName());session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}/* * 唯一性查詢-QBC */@Testpublic void testUniqueQBC(){try {session.beginTransaction();Forum forum = (Forum) session.createCriteria(Forum.class).add(Restrictions.eq("fid", 54)).uniqueResult();System.out.println(forum.getName());session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}/* * 彙總函式查詢-SQL */@Testpublic void testCountSQL(){try {session.beginTransaction();String sql = "SELECT COUNT(*) FROM hnsq_forum";BigInteger total = (BigInteger) session.createSQLQuery(sql).uniqueResult();System.out.println(total);session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}/* * 彙總函式查詢-HQL */@Testpublic void testCountHQL(){try {session.beginTransaction();String sql = "SELECT COUNT(*) FROM Forum";Long total = (Long) session.createQuery(sql).uniqueResult();System.out.println(total);session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}/* * 彙總函式查詢-QBC */@Testpublic void testCountQBC(){try {session.beginTransaction();String sql = "SELECT COUNT(*) FROM Forum";Long total = (Long) session.createCriteria(Forum.class).setProjection(Projections.count("fid")).uniqueResult();System.out.println(total);session.getTransaction().commit();} catch (Exception e) {session.getTransaction().rollback();e.printStackTrace();}}}

650) this.width=650;" src="https://s1.51cto.com/wyfs02/M00/8F/56/wKiom1jbVEjALldSAABwCKMO5XE054.png-wh_500x0-wm_3-wmp_4-s_2908690346.png" title="QQ20170324102905.png" alt="wKiom1jbVEjALldSAABwCKMO5XE054.png-wh_50" />

本文出自 “素顏” 部落格,謝絕轉載!

Hibernate5-唯一查詢和彙總查詢

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.