hibernate 4-hbm.xml基本使用-Maven Demo


ディレクトリ構造は図のように、
hibernate4-hbm.xml基本使用-Maven Demo
1.MyEclipseでMaven-Javaプロジェクトを作成し、pom構成を提供します.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.xuebaosoft.hibernate4</groupId>
	<artifactId>hibernate4-maven-conf</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>
	<name>hibernate4-maven-conf</name>
	<url>http://maven.apache.org</url>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<version>4.2.8.Final</version>
		</dependency>
		<!-- Hibernate uses jboss-logging for logging, for the tutorials we will 
			use the sl4fj-simple backend -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-simple</artifactId>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>5.1.6</version>
		</dependency>
	</dependencies>
</project>

2.環境の準備ができたらpojo-UserModel.javaを書きます.
package modelTest;

public class UserModel {
	private String uuid;
	private int userId;
	private String name;
	private int age;

	public String getUuid() {
		return uuid;
	}
	public void setUuid(String uuid) {
		this.uuid = uuid;
	}
	public int getUserId() {
		return userId;
	}
	public void setUserId(int userId) {
		this.userId = userId;
	}
	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;
	}
}

3.hibernateデータソース環境xml--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="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://192.168.191.1:3306/mysql</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        
        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <!-- Drop and re-create the database schema on startup -->
        <property name="hbm2ddl.auto">create</property>
        
        <mapping resource="UserModel.hbm.xml"/>
    </session-factory>
</hibernate-configuration>

説明:
show_sqlはtrueであり、データベース操作を実行するときにsql文がconsoleにlog形式で印刷されることを示す.
hbm 2 ddl.autoはcreateのために指定したエンティティ-リレーショナルテーブル(存在するかどうかにかかわらず削除操作を先に実行する)を先に削除してから操作することを示しています.これはhibernateの主な実用的な利点の一つであり、sqlを書く必要はありません.
mappingここではエンティティ-リレーショナルテーブルのプロファイルに対応しています
4.エンティティ-リレーショナル・テーブルの構成--UserModel.hbm.xml
<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE hibernate-mapping PUBLIC  
        '-//Hibernate/Hibernate Mapping DTD 3.0//EN'  
        'http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd'>
<hibernate-mapping>
	<class name="modelTest.UserModel" table="tbl_user">
		<id name="userId">
			<generator class="native" />
		</id>
		<property name="uuid"></property>
		<property name="name"></property>
		<property name="age"></property>
	</class>
</hibernate-mapping>

説明すると、
nameがmodelTest.UserModel対応しているのはそのPOJO、tableがtbl_userは対応するデータベースのテーブルを表します
idはuserIdフィールドがプライマリ・キーであることを識別し、残りはプライマリ・キーではなくgeneratorはnativeまたはincrementのために自増を表す.ここには違いを理解したい投稿がある.**(投稿を忘れたので、機会を探して補足する)つまりnativeはローカライズされたスキームであり、incrementを使用して代替される可能性があり、nativeは抽象的な親であると理解できる.incrementはそれを実現する具体的なクラスですが、具体的なクラスはincrementだけではありません.ここでは、プライマリ・キー用nativeもincrementも可能です(公式demo用はincrementです).
このように構成すれば、テストができます.
5.JUnitでテストを行い、
package foo;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import modelTest.UserModel;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;

public class AppTest extends TestCase {
	private SessionFactory sessionFactory;

	public AppTest(String testName) {
		super(testName);
	}

	protected void setUp() throws Exception {
		sessionFactory = new Configuration().configure().buildSessionFactory();
	}

	protected void tearDown() throws Exception {
		if (sessionFactory != null) {
			sessionFactory.close();
		}
	}

	public static Test suite() {
		return new TestSuite(AppTest.class);
	}

	public void testApp() {
		UserModel um = new UserModel();
		um.setUuid("1");
		um.setName("name1");
		um.setAge(1);
		Session s = sessionFactory.openSession();
		Transaction t = s.beginTransaction();
		s.save(um);
		t.commit();
	}
}

6.分析してみると、
まずデータベースmysqlはtblを削除します.userこのテーブルを再構築し、その後レコードを挿入します.
hibernate4-hbm.xml基本使用-Maven Demo
キーコードは
sessionFactory = new Configuration().configure().buildSessionFactory();
そしてこのセッションファクトリーでオープンしてセッションを
Session s = sessionFactory.openSession();
その後、このセッションでhibernateを使用してデータベースを操作するプロセスです.
Transaction t = s.beginTransaction();
s.save(um);
t.commit();
その中でこのPOJOはこのセッションのsaveを使用させ、ORMのフレームワークの下に記録を挿入します.
記事の意味は、Hibernate 4がどのJarパッケージを使用しているのか、基本的な構成手順を記録することです.