简体   繁体   English

强制 jaxb2-maven-plugin 生成 setter 或构造函数

[英]Forcing jaxb2-maven-plugin to generate setters or constructors

I have a following build configuration.我有以下构建配置。 It is working properly, however the problem is in case of generating constructor with all args or generating setters for list.它工作正常,但是问题是在生成带有所有参数的构造函数或为列表生成设置器的情况下。

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>


            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <id>xjc</id>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                    <clearOutputDir>false</clearOutputDir>
                    <sources>
                        <source>src/main/resources/xsd</source>
                    </sources>
                </configuration>
            </plugin>
        </plugins>
    </build>

Can you tell me how to force xjc to generate setters for lists or args-constructors?你能告诉我如何强制xjc为列表或 args-constructors 生成 setter 吗?

This thing works for me 这东西对我有用

<configuration>
    <args>
        <arg>-Xvalue-constructor</arg>
    </args>
    <plugins>
        <plugin>
           <groupId>org.jvnet.jaxb2_commons</groupId>
           <artifactId>jaxb2-value-constructor</artifactId>
           <version>3.0</version>
        </plugin>
        <plugin>
            <groupId>org.jvnet.jaxb2_commons</groupId>
            <artifactId>jaxb2-basics</artifactId>
            <version>0.11.1</version>
        </plugin>
    </plugins>
</configuration>

Let me know if you find any issues with this. 如果您对此有任何疑问,请告诉我。

For generating setter for the collection I added the dependency to org.andromda.thirdparty.jaxb2_commons but it' works only for the new version of jaxb2-maven-plugin .为了为集合生成 setter,我将依赖项添加到org.andromda.thirdparty.jaxb2_commons但它仅适用于新版本的jaxb2-maven-plugin I tried with 2.5.0 and it's works, using the version 2.3.1 doesn't work.我尝试使用2.5.0并且它有效,使用版本2.3.1不起作用。 Here an example:这里有一个例子:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jaxb2-maven-plugin</artifactId>
    <version>2.5.0</version>
    <dependencies>
      <dependency>
         <groupId>org.andromda.thirdparty.jaxb2_commons</groupId>
         <artifactId>collection-setter-injector</artifactId>
         <version>1.0</version>
      </dependency>
   </dependencies>
   <executions>
      <execution>
             ......
       </execution>
    </executions>
    <configuration>
       <sources>
             ......
       </sources>
       <arguments>-Xcollection-setter-injector</arguments>
       <clearOutputDir>false</clearOutputDir>
       <extension>true</extension>
    </configuration>
</plugin>

To generate collection setters you have to add collection-setter-injector to jaxb plugin dependencies and for value constuctor generation - jaxb2-value-constructor .要生成集合设置器,您必须将collection-setter-injector添加到 jaxb 插件依赖项和值构造函数生成 - jaxb2-value-constructor You also have to add proper args to argument list ( -Xcollection-setter-injector and -Xvalue-constructor . Example plugin configuration in pom.xml:您还必须将适当的参数添加到参数列表( -Xcollection-setter-injector-Xvalue-constructor 。pom.xml 中的示例插件配置:

...
<build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>2.5.0</version>
                <dependencies>
                    <dependency>
                        <groupId>org.andromda.thirdparty.jaxb2_commons</groupId>
                        <artifactId>collection-setter-injector</artifactId>
                        <version>1.0</version>
                    </dependency>
                    <dependency>
                        <groupId>org.jvnet.jaxb2_commons</groupId>
                        <artifactId>jaxb2-value-constructor</artifactId>
                        <version>3.0</version>
                    </dependency>
                </dependencies>
                <executions>
                    ...
                </executions>
                <configuration>
                    <sources>
                        ...
                    </sources>
                    <clearOutputDir>true</clearOutputDir>
                    <arguments>
                        <argument>-Xcollection-setter-injector</argument>
                        <argument>-Xvalue-constructor</argument>
                    </arguments>
                    <extension>true</extension>
                </configuration>
            </plugin>
        </plugins>
    </build>
...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM