Eclipse和Hibernate - 在hibernate.cfg.xml中添加映射项的更快捷方式

时间:2014-05-16 18:53:37

标签: java eclipse hibernate

我最近遇到了将映射项添加到hibernate.cfg.xml文件中的问题。为了清楚起见,对于我来说如何生成映射anotations以及所有这些并不是一个谜,但是将这些类添加到hibernate.cfg.xml文件的过程只需要太长时间。例如," Hibernate Configuration 3.0 XML Editor"有一个bult-in函数来在" Session Factory"中添加映射项。标签。可悲的是,你可以一次添加一个课程,这意味着回到会议工厂"选项卡,点击"添加"映射部分中的按钮,并从列表中选择另一个类。

实施例

<?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 name="">
  <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
  <property name="hibernate.connection.password">***********</property>   <-don't mind this
  <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/dvdrental</property>
  <property name="hibernate.connection.username">postgres</property>
  <mapping class="Model.Actor"/>  <- here's the problem. Can you generate this automatically?
 </session-factory>
</hibernate-configuration

&GT;

在eclipse中有更动态的方法吗?无法&#34; hibernate.cfg.xml&#34;我通过&#34; Hibernate代码生成配置&#34;生成java文件后更新文件?我错过了什么吗?

P.S。我现在不使用Spring。

0 个答案:

没有答案