アプリケーションをweblogic8.1からweblogic10.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。どのjarがこれをサポートしていますか?また、PATHとCLASSPATHを正しく設定しました。
私の側からさらに情報が必要な場合はお知らせください。