1

我正在将应用程序从 weblogic 8.1 迁移到 weblogic 10.3.5 版本。通过ant脚本构建应用程序时;我收到以下错误:-

weblogic.appc.run:

[java] Usage: java weblogic.appc [options] <ear, jar, war or rar file or directory> 
[java] 
[java] where options include: 
[java] -help Print the standard usage message. 
[java] -version Print version information. 
[java] -output <file> Specifies an alternate output archive or 
[java] directory. If not set, output will be 
[java] placed in the source archive or directory. 
[java] -plan <file> Specifies an optional deployment plan. 
[java] -forceGeneration Force generation of EJB and JSP classes. 
[java] Without this flag the classes may not be 
[java] regenerated if it is determined to be 
[java] unnecessary. 
[java] -quiet Turns off output except for errors 
[java] -lineNumbers Add JSP line numbers to generated class 
[java] files to aid in debugging. 
[java] -library <file> Comma-separated list of libraries. Each 
[java] library may optionally set its name and 
[java] versions, if not already set in its 
[java] manifest, using the following syntax: <file> 
[java] [@name=<string>@libspecver=<version> 
[java] @libimplver=<version|string>] 
[java] -librarydir <dir> Registers all files in specified directory 
[java] as libraries. 
[java] -writeInferredDescriptors Write out the descriptors with inferred 
[java] information including annotations. 
[java] -manifest <file> Include manifest information from specified 
[java] manifest file. 
[java] -clientJarOutputDir <dir> Specifies a directory to put generated 
[java] client jars. 
[java] Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/j2ee/J2EELogger 
[java] -keepgenerated Keep the generated .java files. 
[java] -verbose Compile with verbose output. 
[java] -classpath <path> Classpath to use. 
[java] -source <source> Source version. 
[java] -target <target> Target version. 
[java] -advanced Print advanced usage options. 
[java] 
[java] at weblogic.application.compiler.Appc.runBody(Appc.java:205) 
[java] at weblogic.utils.compiler.Tool.run(Tool.java:158) 
[java] at weblogic.utils.compiler.Tool.run(Tool.java:115) 
[java] at weblogic.application.compiler.Appc.main(Appc.java:262) 
[java] at weblogic.appc.main(appc.java:14) 
[java] Caused by: java.lang.ClassNotFoundException: weblogic.j2ee.J2EELogger 
[java] at java.net.URLClassLoader$1.run(URLClassLoader.java:202) 
[java] at java.security.AccessController.doPrivileged(Native Method) 
[java] at java.net.URLClassLoader.findClass(URLClassLoader.java:190) 
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:307) 
[java] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) 
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:248) 
[java] ... 5 more 

下面是我正在运行的 ANT 脚本。

<java classname="weblogic.appc" failonerror="true" fork="true" maxmemory="512m"> 
  <arg value="-disableHotCodeGen"/>
  <arg line="-verbose"/>
  <arg line="${weblogic.arg.line.compiler}"/>
  <arg line="-compilerclass com.sun.tools.javac.Main"/>
  <arg line="${weblogic.appc.options}"/>
  <arg value="${compile.dir}/${ejb.domain}-ejbc.jar"/>
  <arg value="${project.dir}/src/java"/>
  <arg value="${compile.dir}/ejb/${ejb.domain}"/>
  <classpath>
    <path refid="weblogic.classpath"/>
    <path refid="project.classpath"/>
    <fileset dir="${java.home}/../lib" includes="tools.jar"/>
  </classpath>
</java> 

即使我找不到 java.lang.NoClassDefFoundError: weblogic/j2ee/J2EELogger 。哪个罐子支持这个?我也正确设置了 PATH 和 CLASSPATH。

如果我需要更多信息,请告诉我。

4

1 回答 1

2

简而言之,确保你有/wlserver_10.3/server/lib/weblogic.jar你的weblogic.classpath变量。

未加载的类来自/modules/com.oracle.core.weblogic.msgcat_1.1.0.0.jar. 这应该通过 MANIFEST.MF 文件导入/wlserver_10.3/server/lib/weblogic.jar。假设您的 weblogic.jar 中应该加载weblogic.classpath该类。weblogic.j2ee.J2EELogger

weblogic.jar加载/modules/features/weblogic.server.modules_10.3.5.0.jar,然后通过它自己的 MANIFEST.MF 加载/modules/com.oracle.core.weblogic.msgcat_1.1.0.0.jar

您的 ant 配置中还有多个<arg line="">标签。您将需要修改这些。

<arg line="-disableHotCodeGen -verbose -compilerclass com.sun.tools.javac.Main ${weblogic.appc.options} ${compile.dir}/${ejb.domain}-ejbc.jar ${project.dir}/src/java ${compile.dir}/ejb/${ejb.domain}">

下面的另一个示例是我当前如何在我的 ant 构建中执行 appc。

<target name="appc" depends="compile,jar">
  <java classname="weblogic.appc" fork="yes" jvm="${bea.java.home}/bin/java" maxmemory="1G" failonerror="true">
    <arg line="${archive.jarfile} -J-Xmx1g"/>
    <classpath>
      <pathelement path="${container.cp};${server.additional.classpath}"/>
      <pathelement path="${archive.jarfile}"/>
    </classpath>
  </java>
</target>

此外,使用开关运行 ant-v以查看正在发出的命令,它应该有助于找到您的问题。

于 2012-09-13T12:11:41.220 回答