020_ID生成ポリシー_XML_コンフィギュレーション
6633 ワード
土曜日、一月02、2016 14:04:55
id生成ポリシー
1.対応項目:hibernate_0400_ID
2.注意:
a)hibernate生成テーブルの構造は将来のために生成されるものではないことを観察した(indexなどの独自の拡張もあるかもしれない)
どのようなテーブルとエンティティクラスマッピングを確立すべきかを理解するためです.
3.
idプライマリ・キー:
1)mysqlで自己増加フィールド、auto increatment
Oracleでsequenceを使用
注意:
クラス内のオブジェクトのこの値には指定できません.プログラム(データベース)で自動的に生成してください.
hibernateやJPAでは、idがどのように生成されるかを設定することで、プログラムを書くときにこのidを設定する必要はありません.
------idの生成ポリシー.
テストクラス:
junitで行う
クラスの後にTestを付けるのはテストクラスHibernateIDTestです
メソッドの前にTestを付けるのがテストメソッドです
ケース:
1.文書自動生成idの表示
ドキュメントを読む習慣は、まずディレクトリを探して、見つからないでから検索することです.
オブジェクト/リレーショナル・データベース・マッピング・ベース(BasicO/R Mapping)にはidがあります.
可能なサブ要素は、永続化クラスのインスタンスに一意の識別を生成するJavaクラスの名前です.
uuid university Unicode id世界で唯一のid---type string
nativeは、データベースに基づいてoracleまたはmysqlのsequenceまたはauto_を使用します.increment
generatorが設定されており、テストクラスでは設定する必要はありません.
xmlプロファイルのuuidの生成
生成されたsql
id varchar(255) not nul
コードケース:
/hibernate_0400_ID/src/com/zhuhw/hibernate/model/Student.hbm.xml
/hibernate_0400_ID/src/com/zhuhw/hibernate/model/Student.java
/hibernate_0400_ID/src/hibernate.cfg.xml
/hibernate_0400_ID/test/com/zhuhw/hibernate/model/HibernateIDTest.java
実行結果:
id varchar(255)
idを生成するのはStringで格納する.
まずstudentテーブルdropを外します
nativeの使用
プロファイル
Javaクラスで
プライマリ・キーをintタイプに設定すればよい.
実行結果:
create table Student (
id integer not null auto_increment,
varchar(255), age integer, primary key (id))
id生成ポリシー
1.対応項目:hibernate_0400_ID
2.注意:
a)hibernate生成テーブルの構造は将来のために生成されるものではないことを観察した(indexなどの独自の拡張もあるかもしれない)
どのようなテーブルとエンティティクラスマッピングを確立すべきかを理解するためです.
3.
idプライマリ・キー:
1)mysqlで自己増加フィールド、auto increatment
Oracleでsequenceを使用
注意:
クラス内のオブジェクトのこの値には指定できません.プログラム(データベース)で自動的に生成してください.
hibernateやJPAでは、idがどのように生成されるかを設定することで、プログラムを書くときにこのidを設定する必要はありません.
------idの生成ポリシー.
テストクラス:
junitで行う
クラスの後にTestを付けるのはテストクラスHibernateIDTestです
メソッドの前にTestを付けるのがテストメソッドです
ケース:
1.文書自動生成idの表示
ドキュメントを読む習慣は、まずディレクトリを探して、見つからないでから検索することです.
オブジェクト/リレーショナル・データベース・マッピング・ベース(BasicO/R Mapping)にはidがあります.
可能な
uuid university Unicode id世界で唯一のid---type string
nativeは、データベースに基づいてoracleまたはmysqlのsequenceまたはauto_を使用します.increment
generatorが設定されており、テストクラスでは設定する必要はありません.
xmlプロファイルのuuidの生成
生成されたsql
id varchar(255) not nul
コードケース:
/hibernate_0400_ID/src/com/zhuhw/hibernate/model/Student.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">
<!-- entity, -->
<hibernate-mapping package="com.zhuhw.hibernate.model">
<class name="Student">
<!-- id ;name=id Student getid() -->
<id name="id" >
<generator class="uuid"></generator>
</id>
<property name="name"/>
<property name="age" />
<!-- hibernater class -->
</class>
</hibernate-mapping>
/hibernate_0400_ID/src/com/zhuhw/hibernate/model/Student.java
package com.zhuhw.hibernate.model;
public class Student {
/*private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}*/
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
private String name;
private int age;
}
/hibernate_0400_ID/src/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>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost/hibernate</property>
<property name="connection.username">root</property>
<property name="connection.password">root</property>
<!-- JDBC connection pool (use the built-in) -->
<!--<property name="connection.pool_size">1</property>-->
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<!--<property name="current_session_context_class">thread</property>-->
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<mapping resource="com/zhuhw/hibernate/model/Student.hbm.xml"/>
<mapping class="com.zhuhw.hibernate.model.Teacher"/>
</session-factory>
</hibernate-configuration>
/hibernate_0400_ID/test/com/zhuhw/hibernate/model/HibernateIDTest.java
package com.zhuhw.hibernate.model;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
public class HibernateIDTest {
public static SessionFactory sf = null;
@BeforeClass
public static void beforeClass(){
sf = new AnnotationConfiguration().configure().buildSessionFactory();
}
@Test
public void TestID(){
Student s = new Student();
/* generator
* s.setId(9);
* */
s.setName("yuzhou1");
s.setAge(1);
Session session = sf.openSession();
session.beginTransaction();
session.save(s);
session.getTransaction().commit();
session.close();
}
@AfterClass
public static void afterClass(){
sf.close();
}
}
実行結果:
id varchar(255)
idを生成するのはStringで格納する.
まずstudentテーブルdropを外します
nativeの使用
プロファイル
Javaクラスで
プライマリ・キーをintタイプに設定すればよい.
実行結果:
create table Student (
id integer not null auto_increment,
varchar(255), age integer, primary key (id))