JBuilderX+SQL Server開發hibernate

來源:互聯網
上載者:User

環境:

   開發的IDE:JBuilderX
  
   使用的資料庫:MS Sql Server 2000
  
   使用的資料庫驅動:JSQL Driver(JDBC 3.0)

  說明:

  1、hibernate在設定檔中明確說明“Microsoft Driver (not recommended!)”,因此先使用JSQL Driver。
  
  2、JSQL Driver可以到http://www.jnetdirect.com中得到,需要先註冊個使用者,才能下載到試用的版本。

  3、JDBC3.0隻能在JDK1.4及以上版本中使用,JBuilderX預設的是JDK1.4

  準備工作:

  1、下載Hibernate,目前最高版本是2.1.2

  2、在JBuilder中建立一個lib,起名為hibernate_full,將hibernatelib下的所有jar通通放進去,並將hibernatehibernate2.jar也放進去

  3、在JBuilder中建立一個lib,起名為JSQL3,將JSQL Driver下的JNetDirectJSQLConnectJDBC_3.0_DriverJSQLConnect.jar放進去

  開始進行例子:
  
  1、建立一個project,命名為testhibernate

  2、在屬性裡的Required Libraries裡加入hibernate_full和JSQL3

  3、在菜單Project --> Project Properties --> Build --> Resource 裡選中xml檔案,選擇“Copy” --在編譯該項目的時候,會自動將src檔案夾裡的xml檔案拷貝到classes檔案夾裡的相應目錄下

  4、在testhibernate項目中建立一個src目錄

  5、將hibernate源檔案裡的hibernatesrchibernate.properties 和 log4j.properties拷貝到testhibernate項目中的src目錄下

  6、修改hibernate.properties中關於MS Sql Server 2000驅動方面的配置

  找到

  ## HypersonicSQL

  hibernate.dialect net.sf.hibernate.dialect.HSQLDialect
  hibernate.connection.driver_class org.hsqldb.jdbcDriver
  hibernate.connection.username sa
  hibernate.connection.password
  hibernate.connection.url jdbc:hsqldb:hsql://localhost
  hibernate.connection.url jdbc:hsqldb:test
  hibernate.connection.url jdbc:hsqldb:.

  這段,這裡是說預設的是使用HypersonicSQL,我們使用的是MS Sql Server,因此將整段注釋掉

  ## HypersonicSQL

  #hibernate.dialect net.sf.hibernate.dialect.HSQLDialect
  #hibernate.connection.driver_class org.hsqldb.jdbcDriver
  #hibernate.connection.username sa
  #hibernate.connection.password
  #hibernate.connection.url jdbc:hsqldb:hsql://localhost
  #hibernate.connection.url jdbc:hsqldb:test
  #hibernate.connection.url jdbc:hsqldb:.

  並且,找到

  ## MS SQL Server

  #hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
  #hibernate.connection.username sa
  #hibernate.connection.password sa

  ## JSQL Driver
  #hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver
  #hibernate.connection.url jdbc:JSQLConnect://1E1/test

  這段,比如我們使用的資料庫伺服器機器名為yuj,資料庫名為testhi,串連到資料庫上去的使用者名稱為sa,密碼為sa,則修改後這段成為

  ## MS SQL Server

  hibernate.dialect net.sf.hibernate.dialect.SQLServerDialect
  hibernate.connection.username sa
  hibernate.connection.password sa

  ## JSQL Driver
  hibernate.connection.driver_class com.jnetdirect.jsql.JSQLDriver
  hibernate.connection.url jdbc:JSQLConnect://yuj/testhi

  7、建立一個類testhibernate.Person,這是個標準的JavaBean,只有3個屬性和相應的getset方法

  package testhibernate;

  public class Person
  {
  private String id;
  private String name;
  private String address;

  public void setId(String value)
  {
  this.id = value;
  }

  public String getId()
  {
  return id;
  }

  public void setName(String value)
  {
  this.name = value;
  }

  public String getName()
  {
  return name;
  }

  public void setAddress(String value)
  {
  this.address = value;
  }

  public String getAddress()
  {
  return address;
  }
  }

   8、建立一個對象-關係映射的xml檔案Person.hbm.xml,放在和Person.java相同的目錄下面

  <?xml version="1.0" encoding="GB2312"?>
  <!DOCTYPE hibernate-mapping SYSTEM "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >
  <hibernate-mapping>
  <class name="testhibernate.Person">
  <!--hibernate為我們產生主鍵id-->
  <id name = "id" unsaved-value = "null">
   <generator class="uuid.hex"/>
  </id>

  <!--預設把類的變數映射為相同名字的表列,當然我們可以修改其映射方式-->
  <property name="name"/>
  <property name="address"/>
  </class>
  </hibernate-mapping>

  9、建立調用類Person的用戶端程式Client1.java

  package testhibernate;

  import net.sf.hibernate.Session;
  import net.sf.hibernate.Transaction;
  import net.sf.hibernate.SessionFactory;
  import net.sf.hibernate.cfg.Configuration;
  import net.sf.hibernate.tool.hbm2ddl.SchemaExport;

  /**
  *本類只是用來建立表的,並不往表內部插入任何資料,並且只能使用一次,否則會刪除已有的表的
  */
  public class Client1
  {
  private static SessionFactory sessionFactory;

  public static void main(String[] args) throws Exception
  {
  Configuration conf = new Configuration().addClass(Person.class);

  //第一次運行時用來在資料庫中建立表
  //並且把sql語句輸出到txt檔案用的
  //以後的運行不能使用該段代碼,否則每次都會先刪除原表,再建立該表
  SchemaExport dbExport = new SchemaExport(conf);
  dbExport.setOutputFile("sql.txt");
  dbExport.create(true, true);
  }
  }

  package testhibernate;

  import net.sf.hibernate.Session;
  import net.sf.hibernate.Transaction;
  import net.sf.hibernate.SessionFactory;
  import net.sf.hibernate.cfg.Configuration;
  import net.sf.hibernate.tool.hbm2ddl.SchemaExport;

  public class Client2
  {
  private static SessionFactory sessionFactory;

  public static void main(String[] args) throws Exception
  {
  Configuration conf = new Configuration().addClass(Person.class);
  sessionFactory = conf.buildSessionFactory();
  Session s = sessionFactory.openSession();

  Transaction t = s.beginTransaction();

  Person yuj = new Person();
  yuj.setName("john");
  yuj.setAddress("上海");

  Person x = new Person();
  x.setName("zhaoyh");
  x.setAddress("上海");

  //持久化
  s.save(yuj); //此時yuj已經可以在資料庫中找到
  s.save(x); //此時x已經可以在資料庫中找到

  t.commit();
  s.close();
  }
  }

  查看資料庫中,增加了2條記錄,OK!初步使用成功了,剩下的慢慢研究吧……

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.