Java构建时间常量配置

时间:2012-10-08 22:54:11

标签: java ant annotations constants final

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

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

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

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

我们使用ant进行建设。

1 个答案:

答案 0 :(得分:4)

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

源过滤

的src /模板/ MyFile.java

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

的build.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
..

的build.xml

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

选择替代构建配置文件

ant -Dprofile=qa ..