Unable to execute program using the jar option.



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!

.



Relevant Pages

  • Re: Unable to execute program using the jar option.
    ... by specifying the class directly it runs just ... Exception: I believe the exact Exception is irrelevant to this issue ... path definately has the jar file that contains the class the exception ... complaining about finding the MigrationDirector .. ...
    (comp.lang.java.programmer)
  • Re: How to update a jar file for one source file change?
    ... I'm new to java, so, I may get terminilogy wrong, bear with me. ... we've got a BIG jar file that includes thousands of classes. ... updated java source code was not being used. ...
    (comp.lang.java.programmer)
  • Re: App running from JAR cant find files
    ... I actually didn't include the html files in the Jar by mistake. ... Notice that you're not using getResource() in the ImageIcon ... getResource, on the other hand, is looking in the jar file. ...
    (comp.lang.java.help)
  • Re: Unable to run a Java jar on iSeries(AS/400) using command JAVA
    ... Have you tried using the Jar files on a PC? ... If the class name is com.myco.MyClass, the class file must be located at "com/myco/MyClass.class", and EXACTLY that name must be in the Jar file. ... We have to run Java programs on AS/400 and we would prefer to run it ... directly on the system with command JAVA. ...
    (comp.sys.ibm.as400.misc)
  • Re: Java kxml
    ... The compiler is telling you that the package that ... that the jar is in the CLASSPATH, check manually, by ... opening the jar or directory structure to ensure that the package does ... I have also had problems in the past where the JAR file ...
    (comp.lang.java.help)