我想知道是否可以从hibernate映射文件生成实体。 我的最终目标是programmaticaly创建一个映射文件,然后从中创建数据库。 我知道我可以使用:
<prop key="hibernate.hbm2ddl.auto">create</prop>
要创建数据库表单实体,但有没有办法,(没有eclipse工具,我需要在应用程序中自动执行)从映射生成实体? (甚至直接映射数据库)。
我不知道其他工具是否可以做到这一点,但我会因为跨数据库的兼容性而使用Hibernate。
谢谢! 纪尧姆
答案 0 :(得分:1)
您可以在mojo plugins的帮助下使用maven通过提供hibernate映射文件来生成Java实体。
以下是maven项目示例:
创建此结构的maven项目:
¦pom.xml
¦
+---src
¦ +---main
¦ +---java
¦ +---resources
¦ ¦ hibernate.cfg.xml
¦ ¦
¦ +---hbmFiles
¦ Person.hbm.xml
hibernate配置文件hibernate.cfg.xml
放在YourProject/src/main/java/resources
映射文件应放在resources
文件夹的resources
或子目录中。
Person.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">
<hibernate-mapping>
<class name="com.mypackage.Person" table="person">
<id name="id" column="id" type="int"/>
<property name="name" column="name" type="string"/>
</class>
</hibernate-mapping>
hibernate.cfg.xml
档案的内容:
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<mapping resource="hbmFiles/Person.hbm.xml"/>
</session-factory>
</hibernate-configuration>
pom.xml
档案的内容:
<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>org.hibernate.tutorials</groupId>
<artifactId>MyProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>MyProject</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>default</phase>
<goals>
<goal>hbm2java</goal>
</goals>
</execution>
</executions>
<configuration>
<components>
<component>
<name>hbm2java</name>
<implementation>configuration</implementation>
<outputDirectory>generated-sources/hibernate3</outputDirectory>
</component>
</components>
<componentProperties>
<drop>true</drop>
<ejb3>true</ejb3>
<jdk5>true</jdk5>
</componentProperties>
</configuration>
</plugin>
</plugins>
</build>
</project>
如果在生成的java实体文件中需要注释,则属性 - ejb3=true
非常有用。如果不需要注释,则只需删除行 - <ejb3>true</ejb3>
创建这3个文件后,您可以运行命令:
mvn clean hibernate3:hbm2java
现在maven在path -
生成java实体文件 YourProject/generated-sources/hibernate3/..package_mentioned_in_hbm_files../Student.java