我已经从hyperjax3生成了.java类,这些类已经注释了 @Entity和@Table 等注释。"
在@Entity中,类名自动添加如下:
@Entity(name = "MyClassName")
但我希望此名称字段具有完全限定的类名作为
@Entity(name = "myPackage.here.MyClassName")
我正在使用
hyperjaxb3-ejb-samples-po-initial-0.5.6示例
并通过运行 mvn clean install 生成带注释的java类,其中我的XSD模式存在于maven项目的src\main\resources
文件夹中。
*我搜索并找到了一种方式,指出使用auto-import = false 但我无法将其合并,因为我只是在运行该maven项目。
答案 0 :(得分:1)
免责声明:我是Hyperjaxb3的作者。
实体名称不可自定义,但您可以实施自己的命名策略以生成完全限定的实体名称。
为此,您必须执行org.jvnet.hyperjaxb3.ejb.strategy.naming.Naming
界面。最简单的方法是继承org.jvnet.hyperjaxb3.ejb.strategy.naming.impl.DefaultNaming
并覆盖getEntityName
方法:
public String getEntityName(Mapping context, Outline outline, NType type) {
final JType theType = type.toType(outline, Aspect.EXPOSED);
assert theType instanceof JClass;
final JClass theClass = (JClass) theType;
return CodeModelUtils.getPackagedClassName(theClass);
}
您还必须包含org\jvnet\hyperjaxb3\ejb\plugin\custom\applicationContext.xml
资源来配置自定义命名策略:
<?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="com.acme.foo.CustomNaming">
<property name="reservedNames" ref="reservedNames"/>
</bean>
</beans>
最后,编译它,打包为JAR并添加到HJ3类路径,例如通过Maven POM中的插件依赖项:
<plugin>
<groupId>org.jvnet.hyperjaxb3</groupId>
<artifactId>maven-hyperjaxb3-plugin</artifactId>
<configuration>...</configuration>
<dependencies>
<dependency>
<groupId>com.acme.foo</groupId>
<artifactId>hyperjaxb3-custom-naming-extension</artifactId>
<version>...</version>
</dependency>
</dependencies>
</plugin>
这是一个实现/配置自定义命名策略的测试项目:
另见: