如何在e Clipse中配置生成的源

时间:2018-07-31 08:09:56

标签: java spring spring-boot

你好,当我使用mapper注释时,我的代码自动在下面生成;

映射器->目标->生成的源->注释-> net->世界->汽车-> agencyportal->服务->映射器-> UserMapperImp.java

那么我怎么能在我自己创建的mapper文件夹的文件夹下生成

谢谢您

1 个答案:

答案 0 :(得分:1)

在pom.xml的插件中添加此代码,例如,根据需要配置源:

    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
            <execution>
                <id>add-source</id>
                <phase>generate-sources</phase>
                <goals>
                    <goal>add-source</goal>
                </goals>
                <configuration>
                    <sources>
                        <source>target/generated-sources/swagger/src/main/java</source>
                    </sources>
                </configuration>
            </execution>
        </executions>
    </plugin>