gpt4 book ai didi

java - Hibernate,从映射文件生成实体和数据库

转载 作者:行者123 更新时间:2023-12-01 12:36:13 24 4
gpt4 key购买 nike

我想知道是否可以从 hibernate 映射文件生成实体。我的最终目标是以编程方式创建映射文件,然后从中创建数据库。我知道我可以使用:

<prop key="hibernate.hbm2ddl.auto">create</prop>

要创建数据库表单实体,但是有没有办法(没有 Eclipse 工具,我需要在应用程序中自动执行)从映射生成实体? (或者甚至直接从映射数据库)。

我不知道其他工具是否可以做到这一点,但我想我会使用 Hibernate,因为跨数据库兼容性。

谢谢!纪尧姆

最佳答案

您可以在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>

该属性 - ejb3=true如果您需要在生成的 java 实体文件中添加注释,则非常有用。如果不需要注释,那么您只需删除行 - <ejb3>true</ejb3>

创建这3个文件后,可以运行命令:

mvn clean hibernate3:hbm2java

现在 maven 在路径生成 java 实体文件 -

YourProject/generated-sources/hibernate3/..package_mentioned_in_hbm_files../Student.java

关于java - Hibernate,从映射文件生成实体和数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25563337/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com