有没有办法从build.xml中指定本地jsch.jar的位置?

时间:2010-09-16 12:26:08

标签: java ant scp

build.xml包含<scp><sshexec>个任务,因此我提供了jsch.jar和 与build.xml在同一目录中的其他库。

以下taskdef:

<taskdef name="scp"
    classname="org.apache.tools.ant.taskdefs.optional.ssh.Scp"
    classpath="WebContent/WEB-INF/lib/jsch-0.1.43.jar" />

抛出错误

A class needed by class org.apache.tools.ant.taskdefs.optional.ssh.Scp
cannot be found: com/jcraft/jsch/UserInfo

我无法修改标准的Ant安装(例如将jsch.jar放在ant lib中 目录,或删除ant-jsch.jar),或添加命令行标志,或修改 系统环境变量等:脚本必须使用默认Ant运行 在不同的系统上。

我实际上是在重新提出原来问的问题: http://ant.1045680.n5.nabble.com/specifying-location-of-an-external-library-within-build-xml-td1344969.html

但无法得到关于classloader的答案。

7 个答案:

答案 0 :(得分:17)

最后,我找到了一个有效的解决方案(至少对于Ant 1.7.1)。首先,您必须从ant-jsch.jar移除ANT_HOME/lib,因为Ant抱怨它并感到困惑。然后从项目本身加载库:

<available property="ant-jsch.present" file="${ant.home}/lib/ant-jsch.jar"/>
<fail if="ant-jsch.present" message="Please remove ant-jsch.jar from ANT_HOME/lib see [http://ant.apache.org/faq.html#delegating-classloader]"/>

<path id="jsch.path">
    <pathelement location="lib/ant-jsch.jar" />
    <pathelement location="lib/jsch-0.1.44.jar" />
</path>

<taskdef name="scp" classname="org.apache.tools.ant.taskdefs.optional.ssh.Scp" classpathref="jsch.path" />
<taskdef name="sshexec" classname="org.apache.tools.ant.taskdefs.optional.ssh.SSHExec" classpathref="jsch.path" />

答案 1 :(得分:3)

所以,这个问题已经过时了,但我设计了另一种方法可以帮助别人。我们可以使用适当的类路径从<java>任务生成Ant以运行<scp>。这样可以避免类路径泄漏问题,并且不需要以任何方式更改Ant安装:

<target name="sendfile">
    <!-- file: local file to send -->
    <!-- todir: remote directory -->
    <java classname="org.apache.tools.ant.launch.Launcher"
        fork="true" dir="${basedir}" taskname="ant+scp">
        <classpath>
            <pathelement location="/where/is/jsch-0.1.49.jar"/>
            <pathelement location="${ant.home}/lib/ant-launcher.jar"/>
        </classpath>
        <arg value="-buildfile"/>
        <arg file="${ant.file}"/>
        <arg value="-Dfile=${file}"/>
        <arg value="-Dtodir=${todir}"/>
        <arg value="sendfile.scp"/>
    </java>
</target>

<target name="sendfile.scp">
    <echo message="Sending ${file} to ${todir}"/>
    <property file="/tmp/passwordfile"/>
    <scp file="${file}" todir="username@11.22.33.44:${todir}"
        trust="true" port="22" password="${PASSWORD}"/>
</target>

不需要port参数,但它在此处作为自定义SSH端口的提醒。密码是存储在/tmp/passwordfile上的属性,如PASSWORD=mysecretpassword。根据您的需要更改这些。以下是一个用法示例:

<ant target="sendfile">
    <!-- Example: send /etc/os-release file to remote dir /home/myself -->
    <property name="file" value="/etc/os-release"/>
    <property name="todir" value="/home/myself"/>
</ant>

答案 2 :(得分:2)

作为参考,我认为有用的方法是重新包装罐子,因此它们不会发生冲突 - 你可以使用JarJar在Ant中执行此操作:

<taskdef name="jarjar" classname="com.tonicsystems.jarjar.JarJarTask" classpath="${basedir}/lib/build/jar/jarjar-1.4.jar"/>

<taskdef name="scp" classname="repackaged.scp.org.apache.tools.ant.taskdefs.optional.ssh.Scp" classpath="${basedir}/lib/build/jar/repackaged-scp.jar"/>

<target name="repackage.scp" description="Repackages Ant's optional SCP task and the JSch implementation to avoid conflicting with one on Ant's classpath">
    <delete file="${basedir}/lib/build/jar/repackaged-scp.jar" failonerror="false"/>
    <jarjar basedir="." jarfile="${basedir}/lib/build/jar/repackaged-scp.jar" includes="nothing">
        <zipfileset src="${basedir}/lib/build/jar/ant-jsch-1.9.1.jar"/>
        <zipfileset src="${basedir}/lib/build/jar/jsch-0.1.50.jar"/>
        <rule pattern="com.jcraft.jsch.**" result="repackaged.scp.com.jcraft.jsch.@1"/>
        <rule pattern="org.apache.tools.ant.taskdefs.optional.ssh.**" result="repackaged.scp.org.apache.tools.ant.taskdefs.optional.ssh.@1"/>
    </jarjar>
</target>

答案 3 :(得分:1)

我可以从这里发帖后解决这个问题 https://stackoverflow.com/a/858744/3499805 然后

if (getIntent().getExtras() != null)
{
   String email = getIntent().getExtras().get("email");
   if (email != null)
    {
      //should execute in case2
    }
}

答案 4 :(得分:0)

创建路径引用,然后在任务定义中使用它:

<path id="ssh.path">
   <pathelement location="${lib1.dir}/helloworld.jar"/>
   <fileset dir="${lib2.dir}">
       <include name="*.jar"/>
   </fileset>
</path>

<taskdef name="mytask" classname="org.mytask" classpathref="ssh.path" />

答案 5 :(得分:0)

创建~/.ant/lib并在其中复制jsch.jar作为构建初始化的一部分。

<target name="init">
  <property name="user.ant.lib" location="${user.home}/.ant/lib"/>
  <mkdir dir="${user.ant.lib}"/>
  <copy todir="${user.ant.lib}">
    <fileset dir="${basedir}/build/tools" includes="jsch-*.jar"/>
  </copy>
</target>

答案 6 :(得分:0)

有一个着名的trick URLClassLoader。通过使用它,我们可以jsch访问ant-jsch

我想知道来自@ user3499805的答案的classloadertask如何运作。

<target name="injectJsch" description="inject jsch jar">
    <makeurl file="${acdc.java.tools}/lib/jsch-0.1.50.jar" property="jsch.jar.url"/>
    <taskdef name="injectJsch"
        classname="tools.deployments.ant.InjectJsch"
        classpath="${basedir}/jars/ajwf_deploytools.jar"
    />
    <injectJsch jarLocation="${jsch.jar.url}"/>
</target>

_

package tools.deployments.ant;

import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;

import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.optional.ssh.LogListener;

public class InjectJsch extends Task {

    public void setJarLocation(final String jarLocation) {
        this.jarLocation = jarLocation;
    }

    @Override
    public void execute() throws BuildException {
        try {
            injectJsch(new URL(jarLocation));
        } catch (final Exception e) {
            throw new BuildException(e);
        }
    }

    public static void injectJsch(final URL jarLocation) throws Exception {
        ClassLoader parent = LogListener.class.getClassLoader();
        try {
            parent.loadClass(TESTCLASS);
        } catch (final ClassNotFoundException e) {
            final Method addURLmethod = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
            addURLmethod.setAccessible(true);
            ClassLoader cl;
            do {
                cl = parent;
                if (cl instanceof URLClassLoader) {
                    addURLmethod.invoke(cl, jarLocation);
                    break;
                }
                parent = cl.getParent();
            } while (parent != cl && parent != null);
            LogListener.class.getClassLoader().loadClass(TESTCLASS);
        }

    }

    private String jarLocation;

    private static final String TESTCLASS = "com.jcraft.jsch.UserInfo";
}