简体   繁体   English

如何运行依赖于其他jar文件的ant的jar

[英]How to run a jar from ant which dependes on other jar file

I am very new on how to create ant files. 我是如何创建ant文件的新手。 Other similar question didn't helped me much so here is what I have. 其他类似的问题对我没什么帮助,所以这就是我所拥有的。

I have this ant file: 我有这个ant文件:

    <?xml version="1.0" encoding="UTF-8"?>
    <project name="UMS-PKS 33 Deploy Scripts for Snapshot" default="main"  basedir="..">

        <property name="src.dir"     value="setup/CopyScriptsToDatabase"/>
        <property name="ant.dir"     value="ant/src"/>
        <property name="build.dir"   value="tmp/buildMySql"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
        <property name="jar.dir"     value="${build.dir}/jar"/>
        <property name="main-class"  value="CopyScriptsToDatabase.test"/>
        <property file="ant/properties/compile.properties" />
        <property file="ant/properties/profile.properties" />
        <property file="ant/properties/${deploy.properties}" />

        <path id="lib.classpath">
            <fileset dir="${ant.dir}">
                <include name="mysql-connector-java-commercial-5.1.21-bin.jar" />
            </fileset>
        </path>

        <target name="clean">

        </target>

        <target name="compile">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}"/>
        </target>

        <target name="jar" depends="compile">
            <mkdir dir="${jar.dir}"/>
            <jar destfile="${jar.dir}/CopyScriptsToDatabase.jar" basedir="${classes.dir}">
                <manifest>
                    <attribute name="Main-Class" value="${main-class}" />
                </manifest>
            </jar>
        </target>

        <target name="run" depends="jar">
            <java jar="${jar.dir}/CopyScriptsToDatabase.jar" fork="true" classpath="lib.classpath">
                <arg value="${dwh.serverName}"/>
            </java>
        </target>

        <target name="clean-build" depends="clean,jar"/>
        <target name="main" depends="clean,run"/>
    </project>

And I get the following error when trying to run the jar file from ant: 尝试从ant运行jar文件时出现以下错误:

        Buildfile: D:\Projects\UMS-PKS\ant\33_DeployScritps.xml
    clean:
    compile:
        [javac] D:\Projects\UMS-PKS\ant\33_DeployScritps.xml:26: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
        [javac] Compiling 1 source file to D:\Projects\UMS-PKS\tmp\buildMySql\classes
    jar:
          [jar] Building jar: D:\Projects\UMS-PKS\tmp\buildMySql\jar\CopyScriptsToDatabase.jar
    run:
         [java] java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
         [java]     at java.net.URLClassLoader$1.run(Unknown Source)
         [java]     at java.security.AccessController.doPrivileged(Native Method)
         [java]     at java.net.URLClassLoader.findClass(Unknown Source)
         [java]     at java.lang.ClassLoader.loadClass(Unknown Source)
         [java]     at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         [java]     at java.lang.ClassLoader.loadClass(Unknown Source)
         [java]     at java.lang.Class.forName0(Native Method)
         [java]     at java.lang.Class.forName(Unknown Source)
         [java]     at CopyScriptsToDatabase.test.main(Unknown Source)
         [java] localhost
         [java] MySQL Connect Example.
    main:
    BUILD SUCCESSFUL
    Total time: 1 second

What do I need to add for this to work? 我需要添加什么才能使用?

Thanks, Sas Gabriel 谢谢,Sas Gabriel

  1. based on the directory your ant file is in, do you have a mysql-connector-java-commercial-5.1.21-bin.jar file in direcotry ../ant/src? 根据您的ant文件所在的目录,您是否在direcotry ../ant/src中有一个mysql-connector-java-commercial-5.1.21-bin.jar文件?
  2. if you have the file in ../ant/src/, use zip tool to open it and make sure Driver.class is in com/mysql/jdbc/. 如果你有../ant/src/中的文件,使用zip工具打开它,并确保Driver.class在com / mysql / jdbc /中。 And I think it's better to name it as lib where you put 3rd party lib files. 而且我认为最好将它命名为lib,你可以放置第三方lib文件。

I just faced the same issue recently. 我最近刚遇到同样的问题。 After some investigation, I found the solution. 经过一番调查,我找到了解决方案。 I'll write it down for the next who are looking for this solution. 我会把它写下来寻找下一个正在寻找这个解决方案的人。

replace this section: 替换此部分:

<target name="run" depends="jar">
    <java jar="${jar.dir}/CopyScriptsToDatabase.jar" fork="true classpath="lib.classpath">
        <arg value="${dwh.serverName}"/>
    </java>
</target>

to this: 对此:

<path id="classref1" location="${jar.dir}/CopyScriptsToDatabase.jar"/>
<path id="classref2" location="path/to/jars/mysql-connector-java-commercial-5.1.21-bin.jar"/>
<target name="run" depends="jar">
    <java fork="true classname="lib.classpath">
        <classpath>
            <path refid="classref1"/>
            <path refid="classref2"/>
        </classpath>
        <arg value="${dwh.serverName}"/>
    </java>
</target>

this is like running: 这就像跑步:

java -cp "mysql-connector-java-commercial-5.1.21-bin.jar:CopyScriptsToDatabase.jar" {lib.classpath} {arg_serverName}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM