如何提供 属性 文件作为 class 路径
how to supply property file as class path
我正在使用 AXIS 创建 Web 服务,运行 使用 ANT 脚本。
<target if="jars.ok" depends="make.repo" name="start.server">
<property name="port" value="7070"/>
<java fork="true" classname="org.apache.axis2.transport.http.SimpleHTTPServer">
<arg value="${build}/repo"/>
<classpath refid="axis2.class.path"/>
<arg value="-p${port}"/>
</java>
</target>
使用
设置类路径
<path id="axis2.class.path">
<pathelement path="${java.class.path}"/>
<pathelement path="${maven.class.path}"/>
<fileset dir="${axis2.home}">
<include name="lib/*.jar"/>
<include name="resources/*.properties"/>
</fileset>
</path>
但我收到错误
[java] log4j:WARN Please initialize the log4j system properly [SimpleHTTPServer]
我需要做什么来解决这个问题,非常感谢
您不能将 属性 文件添加为类路径,只能添加文件夹和 Jar 文件。
所以这里包括整个资源文件夹:
pathelement path="${axis2.home}/resources"
我正在使用 AXIS 创建 Web 服务,运行 使用 ANT 脚本。
<target if="jars.ok" depends="make.repo" name="start.server">
<property name="port" value="7070"/>
<java fork="true" classname="org.apache.axis2.transport.http.SimpleHTTPServer">
<arg value="${build}/repo"/>
<classpath refid="axis2.class.path"/>
<arg value="-p${port}"/>
</java>
</target>
使用
设置类路径<path id="axis2.class.path">
<pathelement path="${java.class.path}"/>
<pathelement path="${maven.class.path}"/>
<fileset dir="${axis2.home}">
<include name="lib/*.jar"/>
<include name="resources/*.properties"/>
</fileset>
</path>
但我收到错误
[java] log4j:WARN Please initialize the log4j system properly [SimpleHTTPServer]
我需要做什么来解决这个问题,非常感谢
您不能将 属性 文件添加为类路径,只能添加文件夹和 Jar 文件。
所以这里包括整个资源文件夹:
pathelement path="${axis2.home}/resources"