Re: Unable to execute program using the jar option.



dan wrote:
Oddly I am unable to execute my jar directly (without getting an
exception); however, by specifying the class directly it runs just
fine.

If I had to guess.. it seems that it is related to my 2 system
properties .. it is behaving as if my classpath is being corrupted
when I use the -jar flag.

fails: (specifying the jar file to run)
%JAVA_HOME%\bin\java -Dframework.runtimeContext="DEV" -
Dframework.properties="H:\Java\Configuration\Extractor\properties
\framework.xml" -jar h:\Migration\migratorCode\cwsmigrator.jar /
mode:import /config:myconfig.xml

works: (specifying the class with main)
%JAVA_HOME%\bin\java
-Dframework.runtimeContext="DEV"
-Dframework.properties="H:\Java\Configuration\Extractor\properties
\framework.xml" package.MigrationDirector /mode:import /
config:myconfig.xml

Details:

Using: Sun Java 1.4.2
Exception: I believe the exact Exception is irrelevant to this issue
as I believe the real issue is the JVM is not
being passed the system properties; however, I will paste it here
anyways.
java.lang.NoClassDefFoundError: com/company/aid/config/
PropertyManagerException
at
com.company.cws.migrator.MigrationDirector.main(MigrationDirector.java:
42)
Exception in thread "main"

Classpath: Contains all needed jars (or it wouldn't work by specifying
just the main class) .. and it does have "." included in the path. The
path definately has the jar file that contains the class the exception
is complaining about .. this has been verifed and it would not work
the other way if this was not the case.

Jar file .. has the manifest file that determines the main class
(MigrationDirector); I don't think this is an issue since it is not
complaining about finding the MigrationDirector .. it complaining
about a class that can't instant
Have recompiled the jar file several time in case it was a fluke.

THANKS!


What is the name of the main class, package.MigrationDirector or com.company.cws.migrator.MigrationDirector? Is the class PropertyManagerException actually in one of the jar files? What is the actual content of the manifest file?

--

Knute Johnson
email s/nospam/knute/
.



Relevant Pages

  • Unable to execute program using the jar option.
    ... by specifying the class directly it runs just ... (specifying the jar file to run) ... Exception: I believe the exact Exception is irrelevant to this issue ... path definately has the jar file that contains the class the exception ...
    (comp.lang.java.programmer)
  • Re: Read file in the jar file?
    ... public String read_file_recursive ... But it doesn't work under the jar file. ... > public static void mainthrows Exception ... > BufferedReader bf = new BufferedReader( ...
    (comp.lang.java.programmer)
  • Re: Running java programs from class files
    ... the command line when I run a java program. ... I can get it to work if I put the jar file in the Class-Path: line in the manifest and put the jar file in the same directory as the program jar file but not from the command line. ... I then compile Test.java from the /test directory and run the .class file with no problems. ... (i.e by explicitly specifying the main class to invoke, and specifying all the jar files in the classpath option) ...
    (comp.lang.java.programmer)
  • Re: Running java programs from class files
    ... command line when I run a java program. ... I can get it to work if I put the jar file in the Class-Path: line in the manifest and put the jar file in the same directory as the program jar file but not from the command line. ... I then compile Test.java from the /test directory and run the .class file with no problems. ... (i.e by explicitly specifying the main class to invoke, and specifying all the jar files in the classpath option) ...
    (comp.lang.java.programmer)
  • Re: making Exe files out of java files
    ... i have developed a java application using netbeans5.5. ... create a exe file of it to distribute or some other file like .jar ... Exception in thread "main" java.lang.NoClassDefFoundError: ... usually located in netbeans_home/platform7/modules/ext (although I'm a bit surprised, because I thought that NB 5.5 copies that file automatically to your dist folder and includes are reference to it in the manifest file of the created jar file) ...
    (comp.lang.java.programmer)