gpt4 book ai didi

java - 如何提供属性文件作为类路径

转载 作者:行者123 更新时间:2023-12-01 09:14:16 24 4
gpt4 key购买 nike

我正在使用 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路径=“${axis2.home}/resources”

关于java - 如何提供属性文件作为类路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40691386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com