4

我正在尝试使用 Amazon Mechanical Turk API 构建一个 jar 文件。SDK 附带一个 helloworld 文件,我试图将其作为健全性检查 - 它位于此处:

http://aws.amazon.com/code/SDKs/695

设置完所有内容后,我可以使用提供的 build.xml 文件使用 ant 正确构建和执行。

bash-3.2$ ant helloworld
ant helloworld
Buildfile: /Users/astorer/Work/dtingley/java-aws-mturk-1.2.2/build.xml

compile-sample:
     [echo] Compiling the sample java source files...
    [javac] /Users/astorer/Work/dtingley/java-aws-mturk-1.2.2/build.xml:252: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds

helloworld:
     [echo] Running the Hello World sample application...
     [java] Got account balance: 10000.00
     [java] Created HIT: 2RB2D5NQYN5F41KJ2IKYPNCW2H3A60
     [java] You may see your HIT with HITTypeId '22R58B727M0IHQ4HZEXYISVF4XCWBC' here: 
     [java] http://workersandbox.mturk.com/mturk/preview?groupId=22R58B727M0IHQ4HZEXYISVF4XCWBC
     [java] Success.

BUILD SUCCESSFUL
Total time: 11 seconds

我希望 helloworld 可由其他人执行,而无需安装库。似乎“正确”的方法是从蚂蚁内部构造一个罐子。

我的理解是我需要包括:

  • 必要的库,从 sdk 本身构建(并作为 .jar 提供)
  • 构建的 helloworld 类文件
  • manifest 属性指定要运行的主类

我不知道我是否需要包含其他内容。我知道在运行时有一个大而复杂的类路径,并且我可以在命令行上指定类路径,但我怀疑对类路径进行硬编码会阻止我分发 .jar 文件,这就是重点。

这是 jar 的 build.xml 片段:

  <target name="hellojar" depends="helloworld" description="Creates Jar of helloworld" >
    <jar destfile="helloworld.jar">
      <fileset file="${sdk.jar}" />
      <fileset dir="${sample.classes.dir}/helloworld/" />
      <fileset dir="."/>
      <manifest>
        <attribute name="Main-Class" value="MTurkHelloWorld" />
      </manifest>
    </jar>
  </target>

这建立了。但是,当我运行 jar 时,它会崩溃:

bash-3.2$ java -jar helloworld.jar 
java -jar helloworld.jar 
Exception in thread "main" java.lang.NoClassDefFoundError: MTurkHelloWorld (wrong name: helloworld/MTurkHelloWorld)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

这是有道理的,因为我的 MTurkHelloWorld 实际上是在 helloworld 包中。因此,我应该改为:

  <manifest>
    <attribute name="Main-Class" value="helloworld.MTurkHelloWorld" />
  </manifest>

这构建成功。当我运行它时:

bash-3.2$ java -jar helloworld.jar 
java -jar helloworld.jar 
Exception in thread "main" java.lang.NoClassDefFoundError: helloworld/MTurkHelloWorld
Caused by: java.lang.ClassNotFoundException: helloworld.MTurkHelloWorld
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

我们可以调查 jar 中的文件:

jar tf helloworld.jar | grep hello
build/private/classes/samples/helloworld/
samples/helloworld/
build/private/classes/samples/helloworld/MTurkHelloWorld.class
samples/helloworld/MTurkHelloWorld.java

这表明如果将类路径设置为 build/private/classes/samples/ 它可能会正常工作:

<attribute name="Class-Path" value="build/private/classes/samples/helloworld" />

这会导致相同的错误。我认为这里缺少一些非常基本的东西,我将不胜感激!

4

1 回答 1

4

您的 package-folder 必须直接启动,您不能将它们放在 jar 文件的任何子目录中:

它必须看起来像这样:

helloworld/
helloworld/MTurkHelloWorld.class

您的jar 任务必须如下所示:

<jar destfile="helloworld.jar" basedir="${sample.classes.dir}">>
  <manifest>
    <attribute name="Main-Class" value="MTurkHelloWorld" />
  </manifest>
</jar>

basedir 是编译包的来源。只需<fileset />添加普通文件即可。

此外,您不能将外部库放入 jar 文件中。它们必须与 jar 位于同一文件夹中,或者在清单中java classpath指定的文件夹中。classpath-attribute或者您可以使用一个 jar 任务,将类包含到您的 jar 中。

于 2011-12-02T08:36:14.163 回答