2011-01-21 128 views
5

我有我的MySQL DB架构创建,我使用休眠反向工程文件来创建带注释的域对象(.java)。虽然文件生成正确,但它在某种程度上缺少ID字段的“生成器”注释。HibernateTools反向工程工具不添加生成器的注释

下面是我的hibernate.reveng.xml中:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE 
hibernate-reverse-engineering PUBLIC 
"-//Hibernate/Hibernate Reverse 
Engineering DTD 3.0//EN" 
"http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" 
<hibernate-reverse-engineering> 
    <table-filter match-name="products" match-catalog="test"></table-filter> 
    <table catalog="test" name="products"> 
    <primary-key> 
     <generator class="native"></generator> 
     <key-column name="product_id"property="product_id" /> 
    </primary-key> 
    </table> 
</hibernate-reverse-engineering> 

和生成的类文件(Products.java):

// default package 
// Generated Jan 21, 2011 8:27:16 PM by Hibernate Tools 3.3.0.GA 

import javax.persistence.Column; 
import javax.persistence.Entity; 
import javax.persistence.Id; 
import javax.persistence.Table; 

/** 
* Products generated by hbm2java 
*/ 
@Entity 
@Table(name = "products", catalog = "test") 
public class Products implements java.io.Serializable { 

private String productId; 
private String productName; 

public Products() { 
} 

public Products(String productId) { 
    this.productId = productId; 
} 

public Products(String productId, String productName) { 
    this.productId = productId; 
    this.productName = productName; 
} 

@Id 
@Column(name = "product_id", unique = true, nullable = false, length = 50) 
public String getProductId() { 
    return this.productId; 
} 

public void setProductId(String productId) { 
    this.productId = productId; 
} 

@Column(name = "product_name", length = 200) 
public String getProductName() { 
    return this.productName; 
} 

public void setProductName(String productName) { 
    this.productName = productName; 
} 

} 

有东西在我的hibernate.reveng.xml中文件丢失或休眠不会生成“发电机”的注释?

+0

经过一番搜索,我跟着一些帮助和作出以下修正:1)更新的product_id DB列的数据类型为INT 2)已分配AUTO_INCREMENT属性。现在,该工具能够为域生成器(Products.java)中的“@GeneratedValue”生成Native Generator的注释。我仍然需要检查它是否仅适用于INT列或其他数据类型的列,以及如何使其适用于VARCHAR列。 – mayur 2011-01-21 19:27:56

回答

0
<key-column name="product_id" property="product_id" /> 

这里有一个问题。这部分是正确的:key-column name="product_id",它映射到数据库列product_id,但这部分是错误的:property="product_id",这是Java属性和那个叫productId,不product_id。这是正确的值:

<key-column name="product_id" property="productId" /> 

是:AFAIK自动生成仅适用于数字类型。

1

你需要检查“EJB3”或添加在配置:

<hbm2java jdk5="true" ejb3="true" />