我正在使用带有Springboot应用程序的SqlServer42驱动程序,该应用程序使用jparepositories保存hyperjaxb3生成的实体。
我已覆盖 PhysicalNamingStrategyStandardImpl.toPhysicalTableName()
,为表名添加一些字符串作为前缀。
问题是表名和列名被截断为30个字符限制。最终生成的名称是 30 字符长度(前缀+表名)。
即使我不使用前缀而且表名恰好超过30个字符,同样会被截断。
我还检查过sqlserver允许名称为 128 字符长度。
有没有办法增加此限制,因为SqlServer允许超过30个字符名称。
编辑:生成的类使用@Table(name = <Truncated_Value>)
答案 0 :(得分:1)
此处Hyperjaxb的作者。
HJ3尝试生成尽可能跨数据库兼容的注释。截断30个字符来自Oracle。
此刻,它在default naming strategy中被“硬编码”。无法“轻松”重新配置(即通过插件配置选项或类似选项)。唯一的选择似乎是编写自己的命名策略或记录默认的命名策略。这是一个测试项目,演示如何执行此操作:
https://github.com/highsource/hyperjaxb3/tree/master/ejb/tests/custom-naming
我认为您基本上只需要使用org/jvnet/hyperjaxb3/ejb/plugin/custom/applicationContext.xml
文件创建“扩展”JAR:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean name="naming" class="org.jvnet.hyperjaxb3.ejb.strategy.naming.impl.DefaultNaming">
<property name="reservedNames" ref="reservedNames"/>
<property name="ignoring" ref="ignoring"/>
<property name="maxIdentifierLength" value="128"/>
</bean>
</beans>
然后将此工件添加到HJ3插件的类路径中。 For example,在Maven:
<build>
<defaultGoal>test</defaultGoal>
<plugins>
<plugin>
<groupId>org.jvnet.hyperjaxb3</groupId>
<artifactId>maven-hyperjaxb3-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.jvnet.hyperjaxb3</groupId>
<artifactId>hyperjaxb3-ejb-tests-custom-naming-extension</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>