HyperJaxb3项目中发生了什么?

时间:2016-03-14 12:12:47

标签: jaxb hyperjaxb

据我所知,Hyperjaxb3库对我的项目非常有用,可以阅读多个站点的几个描述,并决定将它嵌入到我的Spring-Hibernate项目中。

我在https://jaxb.java.net/中找到了对Hyperjaxb3的引用,这看起来很官方,但超链接 - http://confluence.highsource.org/display/HJ3/Home - 并没有打开。

我找到了一些旧的POM示例,将它包含在我的项目中,并找到了一些旧版本的引用,试图消除它们,但是现在看来我正在碰到对旧的Hibernate版本的依赖,错误是这样的:

java.util.ServiceConfigurationError:com.sun.tools.xjc.Plugin:Provider org.jvnet.hyperjaxb3.hibernate.plugin.HibernatePlugin无法实例化:java.lang.NoClassDefFoundError:org / hibernate / type / MutableType < / p>

我想知道是否有更好的Maven条目,如果项目还活着,我如何在现代Hibernate中使用它。

这是关于Hyperjaxb3的pom摘录,我在其中排除了一些过时的链接并指定了其他依赖项的最新版本:

    <dependency>
        <groupId>org.glassfish.jaxb</groupId>
        <artifactId>jaxb-core</artifactId>
        <version>${jaxb-version}</version>
    </dependency>        
    <dependency>
        <groupId>org.glassfish.jaxb</groupId>
        <artifactId>jaxb-xjc</artifactId>
        <version>${jaxb-version}</version>
    </dependency>  
    <!--<dependency>
        <groupId>org.jvnet.hyperjaxb3</groupId>
        <artifactId>hyperjaxb3</artifactId>
        <version>0.6.1</version>
    </dependency>        -->
    <dependency>
        <groupId>org.jvnet.hyperjaxb3</groupId>
        <artifactId>hyperjaxb3-hibernate-plugin</artifactId>
        <version>0.1</version>
        <exclusions>
            <exclusion>
                <groupId>hsqldb</groupId>
                <artifactId>hsqldb</artifactId>
            </exclusion>
            <exclusion>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
            </exclusion>
            <exclusion>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
            </exclusion>
            <exclusion>
                <groupId>net.sf.saxon</groupId>
                <artifactId>saxon</artifactId>
            </exclusion>
            <exclusion>
                <groupId>net.sf.saxon</groupId>
                <artifactId>saxon-dom</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.springframework</groupId>
                <artifactId>spring</artifactId>
            </exclusion>
            <exclusion>
                <groupId>com.sun.xml.bind</groupId>
                <artifactId>jaxb-xjc</artifactId>
            </exclusion>
        </exclusions>
    </dependency>  
    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm</artifactId>
        <version>3.3.1</version>
    </dependency>
    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm-attrs</artifactId>
        <version>2.2.3</version>
    </dependency>
    <dependency>
        <groupId>cglib</groupId>
        <artifactId>cglib</artifactId>
        <version>3.2.1</version>
    </dependency>

    <dependency>
        <groupId>commons-beanutils</groupId>   
        <artifactId>commons-beanutils</artifactId>
        <version>1.9.2</version>
    </dependency>
    <dependency>
        <groupId>commons-lang</groupId>   
        <artifactId>commons-lang</artifactId>
        <version>2.6</version>
    </dependency>
    <dependency>
        <groupId>commons-logging</groupId>   
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
    </dependency>

我目前没有尝试生成带注释的Hibernate实体类,但是来自PurchaseOdrer示例的POJO。这就是我目前所做的事情:

public void initializeModel(String name, InputStream src, String dir) throws IOException, URISyntaxException{
    dir = Paths.get(new URL(dir).toURI()).toString();
    File directory = new File(dir);
    directory.mkdirs();

    SchemaCompiler sc = XJC.createSchemaCompiler();
    sc.setDefaultPackageName(this.getClass().getPackage().getName() + ".generated");

    InputSource is = new InputSource(src);
    is.setSystemId(name);

    sc.parseSchema(is);
    S2JJAXBModel model = sc.bind();
    JCodeModel codeModel = model.generateCode(null, null);

    CodeWriter cw = new FileCodeWriter(directory);        
    codeModel.build(cw);
}

1 个答案:

答案 0 :(得分:4)

免责声明:我是Hyperjaxb3的作者。

该项目托管在GitHub上:

最新版本0.6.1功能正常,可以正常使用。

但是,我不再积极发展它了。

  

它是否适用于当前版本的hibernate?

使用Hibernate 4.1.7测试版本0.6.1的工作原理。 HJ3只是一个代码生成器,它生成标准的JPA注释类。因此很有可能它可以与最新版本的Hibernate一起使用。

  

我无法从Maven获得0.6.1 jar。似乎它已从maven存储库中删除。

真的?还在那里。

http://repo1.maven.org/maven2/org/jvnet/hyperjaxb3/hyperjaxb3-ejb-plugin/0.6.1/

  

我不明白我是否需要2011年的“hyperjaxb3-hibernate-plugin”0.1。

你绝对不会。

  

或者你知道任何分叉或模拟吗?

不幸的是,没有什么可以接近的。