Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.7k views
in Technique[技术] by (71.8m points)

多war模块的maven项目怎样给每个war设置不同的域名?

目前用的【maven-war-plugin】插件将多个war合并,但是合并以后就不能用【tomcat8-maven-plugin】的Alias属性给每个war设置不同的域名了。
怎样才能在多个war模块的maven项目中给每个war模块设置不同的域名呢?

`<plugin> <groupId>org.apache.maven.plugins</groupId>

            <artifactId>maven-war-plugin</artifactId>
            <version>3.3.1</version>
            <configuration>
                <overlays>
                    <overlay>
                        <groupId>${project.groupId}</groupId>
                        <artifactId>dekingCloudApi</artifactId>
                    </overlay>
                </overlays>
                <failOnMissingWebXml>false</failOnMissingWebXml>
            </configuration>
        </plugin>`

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...