用ant脚本编译引用了第三方包的java类 20
现在我有一个java类,一个jar包放在一个文件夹里,在文件夹外面是build.xml文件和build.bat文件,java类里引用了jar包里的类,现在我想在build...
现在我有一个java类,一个jar包放在一个文件夹里,在文件夹外面是build.xml文件和build.bat文件,java类里引用了jar包里的类,现在我想在build.xml文件里用<javac>编译这个类,可是总是找不到引用jar的类,应该怎么做呢?
展开
1个回答
展开全部
此文件为myproperties.xml
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- Hibernate -->
<path id="hibernate.classpath">
<pathelement location="${hibernate.jar}"/>
<fileset dir="${hibernate.dir}/lib" includes="*.jar"/>
<pathelement location="${database.jar}"/>
<pathelement location="${commons-beanutils.jar}"/>
<pathelement location="${commons-lang.jar}"/>
<path location="${build.dir}/dao/classes"/>
<fileset dir="${osworkflow.dir}" includes="*.jar"/>
</path>
</project>
在build.xml中加入:
<?xml version="1.0" encoding="UTF-8"?>
<project name="xxxxxx" basedir="." default="package-web">
<!-- import properties (app settings, classpath, jar file locations) -->
<import file="myproperties.xml"/>
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- Hibernate -->
<path id="hibernate.classpath">
<pathelement location="${hibernate.jar}"/>
<fileset dir="${hibernate.dir}/lib" includes="*.jar"/>
<pathelement location="${database.jar}"/>
<pathelement location="${commons-beanutils.jar}"/>
<pathelement location="${commons-lang.jar}"/>
<path location="${build.dir}/dao/classes"/>
<fileset dir="${osworkflow.dir}" includes="*.jar"/>
</path>
</project>
在build.xml中加入:
<?xml version="1.0" encoding="UTF-8"?>
<project name="xxxxxx" basedir="." default="package-web">
<!-- import properties (app settings, classpath, jar file locations) -->
<import file="myproperties.xml"/>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询