您好,登錄后才能下訂單哦!
本篇內容主要講解“NetBeans下配置Hibernate連接MySQL 5”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“NetBeans下配置Hibernate連接MySQL 5”吧!
NetBeans下配置Hibernate連接MySQL 5前提:
首先安裝Hibernate 2.1
其次安裝MySQL 5
然后安裝mysql-connector-java-3.1.12-bin.jar
需要有Netbeans 5.XIDE
1 .配置Hibernate庫
在Netbeans 的Tools->Library Manager中點 New Library,在Library Name中輸入 hibernate 2.1
然后點OK,在ClassPath 中點 Add JAR/Folder,選擇{Hibernate安裝目錄}\lib 添加所有的文件。
再選擇JavaDoc,點Add JAR/Folder 選擇{Hibernate安裝目錄}\doc\api。這樣可以獲得doc
2 .這里配置MySQL的庫
用#1同樣的方法配置mysql-connector-java-3.1.12-bin.jar,只不過選擇添加的是mysql-connector-java-3.1.12-bin.jar
然后再netbeans的工程視圖下,右鍵點 library,選擇添加library,把前面添加好的hibernate 2.1和 MySQL connector添加進去
3. 在MySQL中建立一個schmeate 叫test ,再建立一個table叫CUSTOMER,其中有幾個屬性,分別是id[bigint(20)],name[varchar],
email[varchar],phonenumber[varchar],其中id是primer key
4. 在netbeans中建立一個Customer類。具體代碼如下
package jdbctest; import java.io.Serializable; import java.sql.Date; import java.sql.Timestamp; /** * * @author AlarnMartin */ public class Customer implements Serializable { /** Creates a new instance of Customer */ public Customer () { } /** * 設置OID * @param id OID,用來區分實例的ID */ public void setId(Long id) { this.id = id; } /** * 獲得OID,可以用customerA.getId().compar(customerB.getId())來比較兩個實例是否一樣 * @return OID 用來區分是否是同一條記錄 */ public Long getId() { return this.id; } public void setName(String name) { this.name = name; } public String getName() { return this.name; } public void setEmail(String email) { this.email = email; } public String getEmail() { return this.email; } public void setPassword(String password) { this.password = password; } public String getPassword() { return this.password; } public void setPhone(int phone) { this.phone = phone; } public int getPhone() { return this.phone; } private Long id; private String name; private String email; private String password; private int phone; }
5 .在Netbeans 建立一個 Customer.hbm.xml文件,注意這個XML文件不能放到包內,因為前面的類已經放到了jdbctest包內了,而且由于其他原因,所以這個XML不能放到包內,具體代碼如下:
<?xml version="1.0" encoding="UTF-8"?> PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd"> <hibernate-mapping> <class name="jdbctest.Customer" table="CUSTOMERS"> <id name="id" column="ID" type="long"> <generator class="increment"/> id> <property name="name" column="NAME" type="string" not-null="true" /> <property name="email" column="EMAIL" type="string" not-null="true" /> <property name="password" column="PASSWORD" type="string" not-null="true"/> <property name="phone" column="PHONE" type="int" /> <property name="address" column="ADDRESS" type="string" /> class> hibernate-mapping>
6.再建立一個hibernate.cfg.xml
具體內容如下:
<?xml version=’1.0’ encoding=’UTF-8’?> "-//Hibernate/Hibernate Configuration DTD 2.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd"> <hibernate-configuration> <session-factory> <property name="connection.username">rootproperty> <property name="connection.url">jdbc:MySQL://localhost:3306/testproperty> <property name="dialect">net.sf.hibernate.dialect.MySQLDialectproperty> <property name="connection.password">bd643012property> <property name="connection.driver_class">org.gjt.mm.MySQL.Driverproperty> <mapping resource="Customer.hbm.xml"/> session-factory> hibernate-configuration>
7.再建立一個Test類進行測試
package jdbctest; import net.sf.hibernate.*; import net.sf.hibernate.cfg.*; import java.math.*; public class Test { /** * @author 鮑冠辰 */ public static void main(String[] args) throws Exception{ // TODO Auto-generated method stub SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory(); Customer customer = new Customer(); customer.setId(Long.valueOf("4")); customer.setName("martin"); customer.setEmail("tain198127@163.com"); customer.setPassword("123456"); Session session = sessionFactory.openSession(); Transaction tx = session.beginTransaction(); session.save(customer); tx.commit(); session.close(); sessionFactory.close(); System.out.println("ok"); } }
執行一下吧,再看看MySQL的變化。
大家可以發現,如果更換了其他的數據庫的話,只需要配置一下XML文件就可以了。這就是NetBeans下配置Hibernate連接MySQL 5的具體步驟。
到此,相信大家對“NetBeans下配置Hibernate連接MySQL 5”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。