前の質問へのフォローアップの質問: Hibernate 4 で SQL DB 作成スクリプトを生成する
目標は、(Hibernate ツールに存在する hibernatetool-hbm2ddl Ant タスクと同様に) 特定の持続性ユニットの SQL スキーマでファイルを生成できるコマンド ライン ツールを用意することです。
これは、私の前の質問への回答によると、 で達成できますorg.hibernate.tool.hbm2ddl.SchemaExport
。
(前の回答で提案されているように)すべてのエンティティを に追加する代わりに、Configuration
を指定したいと思いますPersistenceUnit
。
Hibernate に永続化ユニットを追加することは可能Configuration
ですか?
何かのようなもの
Properties properties = new Properties();
properties.put( "hibernate.dialect", "org.hibernate.dialect.PostgreSQLDialect" );
...
EntityManagerFactory entityManagerFactory =
Persistence.createEntityManagerFactory( "persistentUnitName", properties );
Configuration configuration = new Configuration();
... missing part ...
SchemaExport schemaExport = new SchemaExport( configuration );
schemaExport.setOutputFile( "schema.sql" );
...
コメント a sample で要求されたとおりに編集persistence.xml
します。各クラスには注釈が付けられています@Entity
<persistence
xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0"
>
<persistence-unit
name="doiPersistenceUnit"
transaction-type="JTA"
>
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>jdbc/doi</jta-data-source>
<class>ch.ethz.id.wai.doi.bo.Doi</class>
[...]
<class>ch.ethz.id.wai.doi.bo.DoiPool</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="false" />
<property name="hibernate.connection.characterEncoding" value="utf8" />
<property name="hibernate.connection.charSet" value="utf8" />
</properties>
</persistence-unit>
</persistence>