gpt4 book ai didi

java - 将 columnDefinition 属性添加到 Hyperjaxb 生成的 @Column 属性

转载 作者:行者123 更新时间:2023-11-29 11:57:35 36 4
gpt4 key购买 nike

我正在使用 Hyperjaxb 生成 JPA 映射。然后我使用 hibernate3-maven-plugin 生成数据库的 SQL 脚本。我的问题在于我有一个类型,其属性定义如下:

<xsd:element name="priority" type="xsd:boolean"/>

sql脚本像这样定义列

PRIORITY bit,

JPA实体是这样定义的

/**
* Obtient la valeur de la propriété priority.
*
*/
@Basic
@Column(name = "PRIORITY")
public boolean isPriority() {
return priority;
}

/**
* Définit la valeur de la propriété priority.
*
*/
public void setPriority(boolean value) {
this.priority = value;
}

我使用 MySql 作为后端。当我的 JPA/HibernateEntityManager 尝试根据数据库验证我的 JPA 模型时,就会出现问题。然后我得到这个错误

org.hibernate.HibernateException: Wrong column type in custom.sample_type for column PRIORITY. Found: bit, expected: boolean

如何修复此错误?我在某处读到我可以在 java 代码中做类似的事情

@Basic
@Column(name = "B", columnDefinition = "BIT", length = 1)
public boolean isB() {
return b;
}

但是我的 JPA java 代码是由 Hyperjaxb 自动生成的,那么我如何使用 Hyperjaxb 实现类似的功能?

最佳答案

免责声明:我是 Hyperjaxb 的作者.

我会尝试通过以下方式自定义您的属性:

<hj:basic>
<orm:column column-definition="..."/>
</hj:basic>

请参阅customizations schemaORM schema它使用。

如果您不想自定义每个 boolean 值(您可能不想要),您还可以配置每种类型的自定义:

<hj:default-single-property type="xsd:boolean">
<hj:basic>
<orm:column column-definition="..."/>
</hj:basic>
</hj:default-single-property>

<hj:default-collection-property type="xsd:boolean">
<hj:element-collection>
<orm:column column-definition="..."/>
</hj:element-collection>
</hj:default-collection-property>

参见this example绑定(bind)文件的:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jaxb:bindings
version="2.1"
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:hj="http://hyperjaxb3.jvnet.org/ejb/schemas/customizations"
xmlns:orm="http://java.sun.com/xml/ns/persistence/orm"
xmlns:annox="http://annox.dev.java.net"
jaxb:extensionBindingPrefixes="hj orm annox">

<jaxb:bindings schemaLocation="schema.xsd" node="/xs:schema">
<jaxb:schemaBindings>
<jaxb:package name="org.jvnet.hyperjaxb3.ejb.tests.pocustomized"/>
</jaxb:schemaBindings>
<hj:persistence>
<hj:default-generated-id name="MySuperId" transient="true">
<orm:column name="MY_SUPER_ID"/>
</hj:default-generated-id>
<hj:default-one-to-many>
<orm:join-table/>
</hj:default-one-to-many>
</hj:persistence>
<jaxb:bindings node="xs:complexType[@name='one']/xs:sequence/xs:element[@name='many-to-many-join-table']">
<annox:annotate>
<annox:annotate annox:class="org.hibernate.annotations.Cascade" value="DELETE_ORPHAN"/>
</annox:annotate>
</jaxb:bindings>

<jaxb:bindings node="xs:element[@name='ten']/xs:complexType">
<hj:basic name="content">
<orm:column length="1024"/>
</hj:basic>
</jaxb:bindings>

</jaxb:bindings>


</jaxb:bindings>

您必须将 hj:default-...-property 元素放置在 hj:persistence 中。然后他们将覆盖默认映射。

关于java - 将 columnDefinition 属性添加到 Hyperjaxb 生成的 @Column 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32955220/

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