I'm just getting started with Ant, and I'm having problems getting a "run" target to work. Part of my code loads a properties file, and it always fails to find this file unless I make my run target use a new JVM. Below is a very simplified example, the "run" target fails, the "run_fork" target works. My understanding is that Ant has it's own class loader that replaces the default one, so I imagine this is mucking with the search path somehow. Is there any way I can change my code to make this work without having to fork a new JVM?
build.xml:
<project name="PropsExample" default="compile" basedir=".">
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<target name="init">
<tstamp/>
<mkdir dir="${bin}"/>
</target>
<target name="compile" depends="init">
<javac includeAntRuntime="false" srcdir="${src}" destdir="${bin}"/>
<copy todir="${bin}">
<fileset dir="${src}" includes="**/*.properties"/>
</copy>
</target>
<target name="clean">
<delete dir="${bin}"/>
<delete dir="${dist}"/>
</target>
<target name="run" depends="compile">
<java classname="com.example.Test">
<classpath>
<pathelement location="${bin}"/>
</classpath>
</java>
</target>
<target name="run_fork" depends="compile">
<java fork="true" classname="com.example.Test">
<classpath>
<pathelement location="${bin}"/>
</classpath>
</java>
</target>
example code:
package com.example;
import java.util.Properties;
import java.io.InputStream;
public class PropertiesLoader {
public static String getProperty() throws Exception {
InputStream in = ClassLoader.getSystemResourceAsStream("com/example/test.properties");
if ( in == null ) {
throw new Exception("Cannot find test.properties");
}
Properties p = new Properties();
p.load(in);
in.close();
return p.getProperty("test");
}
}
and:
package com.example;
public class Test {
public static void main(String[] args) throws Exception {
try {
System.out.println(PropertiesLoader.getProperty());
} catch ( Exception e ) {
e.printStackTrace(System.out);
}
}
}