2

我有一个想要使用多种配置构建的项目。我有一个常量需要在构建之间有所不同,但我不知道如何根据我的配置更改它。

例如,我希望能够根据配置文件中的值执行以下操作。

@WebService(targetNamespace = "http://example.com/")
public class CustomerWebService {

@WebService(targetNamespace = "http://demo.example.com/")
public class CustomerWebService {

我们使用 ant 进行构建。

4

1 回答 1

4

我建议尝试模拟 Maven 资源过滤和配置文件属性

源过滤

src/模板/MyFile.java

..
@WebService(targetNamespace = "@WS_NAMESPACE@")
public class CustomerWebService {
..

构建.xml

<target name="filter-sources">
    <copy todir="${build.dir}/src">
       <fileset dir="src/templates" includes="**/*.java"/>
       <filterset>
          <filter token="WS_NAMESPACE" value="${ws.namespace}"/>
       </filterset>
    </copy>
</target>

<target name="compile" depends="filter-sources">
    <javac destdir="${build.dir}/classes">
        <src path="src/java"/>
        <src path="${build.dir}/src"/>
        <classpath>
        ..
        ..
    </javac>
</target>

笔记:

  • ANT 复制任务能够执行模板替换。

构建配置文件

属性文件

每个配置都有不同的属性文件

src/properties/dev.properties
src/properties/qa.properties
src/properties/prod.properties
..

构建.xml

<property name="profile" value="dev"/>
<property file="src/properties/${profile}.properties"/>

选择替代构建配置文件

ant -Dprofile=qa ..
于 2012-10-08T23:46:21.117 回答