我正在使用xsd架构生成类。
我无法弄清楚如何判断对象标识符应该是程序中生成的UUID。我的错误是:
Hibernate:select nextval('hibernate_sequence') org.hibernate.id.IdentifierGenerationException:在调用save()之前必须手动分配此类的ID:com.vsetec.collect.app.generated.Balance
我的代码是:
<xsd:complexType name="balance">
<xsd:annotation>
<xsd:documentation>Balance Amounts</xsd:documentation>
</xsd:annotation>
<xsd:all>
<xsd:element name="comment" type="longNameString"/>
</xsd:all>
<xsd:attribute name="typeCd" type="referenceCode"/>
<xsd:attribute name="amount" type="xsd:decimal"/>
<xsd:attribute name="currencyCd" type="referenceCode"/>
<xsd:attribute name="dateLoad" type="xsd:date"/>
<xsd:attribute name="historizedOn" type="historizedDate"/>
<xsd:attribute name="id" type="uuidString" minOccurs="0">
<xsd:annotation>
<xsd:appinfo>
<jaxb:property>
<jaxb:javadoc>@hyperjaxb.hibernate.id unsaved-value="null" generator-class="uuid.hex"</jaxb:javadoc>
</jaxb:property>
<hj:id>
<!--<hj:generator generatorClass="uuid"/>-->
<orm:column name="id"/>
<!--<orm:generated-value generator="uuid"/>-->
</hj:id>
</xsd:appinfo>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
更新开始 这会在我的java中生成以下内容:
/**
* @hyperjaxb.hibernate.id unsaved-value="null" generator-class="uuid.hex"
*
* @return
* possible object is
* {@link String }
*
*/
@Id
@Column(name = "id", length = 32)
public String getId() {
return id;
}
如果我添加
<orm:generated-value generator="uuid"/>
,它说的是“没有名字uuid的发电机”
如果我添加
<hj:generator generatorClass="uuid"/>
,没有添加任何内容,没有添加UUID生成器或任何内容的注释。我搜索了“uuid”子串,所以我知道。上述错误仍然存在。
我想让Hibernate生成一个作为UUID的标识符。该文档说它是通过以下注释实现的:
@Id
@GeneratedValue
public UUID id;
文档在这里:
它描述了如何注释UUID类型的字段。我想这是关于如何在Jaxb中映射UUID字段的另一层问题,所以我首先尝试将其映射为十六进制字符串,例如。但是,如果你有一个解决这个问题的工作解决方案并不常见,那么对每个人都有用。
更新结束
以前使用HBM时我会这样做:
<class entity-name="Balance">
<cache usage="read-write"/>
<comment>
Balance Amounts
</comment>
<id name="id" type="string" length="32">
<generator class="uuid"/>
</id>
<property name="currencyCd" type="string" length="32"/>
<property name="amount" type="big_decimal"/>
<property name="comment" type="string" length="255"/>
<property name="historizedOn" type="date"/>
</class>
UPD
我不知道这个xml映射对应的注释,但它有效。它似乎将UUID生成器附加到String字段。我不能说什么是类定义因为我使用了“动态地图”。我的任务只是从HBM和动态地图切换到Hyperjaxb并生成类。
ANSWER (以答案的形式而不是模糊的rtfm风格提示)
<xsd:attribute name="id" type="uuidString" minOccurs="0">
<xsd:annotation>
<xsd:appinfo>
<hj:id>
<orm:column name="id"/>
<orm:generated-value generator="uuid"/>
</hj:id>
<annox:annotate>
<ha:GenericGenerator name="uuid" strategy="uuid2"/>
</annox:annotate>
</xsd:appinfo>
</xsd:annotation>
</xsd:attribute>
uuidString应为36个字符
PS。质量插入仍然存在问题(可疑的uuid欺骗,但还不确定
答案 0 :(得分:0)
您可以使用以下自定义生成@GeneratedValue
:
<hj:id>
<orm:generated-value strategy="..." generator="..."/>
</hj:id>
您已经使用generator="uuid"
尝试了此操作并得到类似&#34;生成器uuid未知&#34;。这可能是因为您还需要为名称uuid
实际配置生成器,就像在Hibernate docs中一样:
@GenericGenerator(
name = "uuid",
strategy = "org.hibernate.id.UUIDGenerator",
parameters = {
@Parameter(
name = "uuid_gen_strategy_class",
value = "org.hibernate.id.uuid.CustomVersionOneStrategy"
)
}
)
然而,这不是标准的JPA注释,因此HJ3不会生成它。您可以使用jaxb2-annotate-plugin添加此注释。
免责声明:我是Hyperjaxb3和jaxb2-annotate-plugin的作者。