I'm writing school's project (discrete simulation library) in Java, and I am still getting this error when I'm running example app:
[java] Exception in thread "main" java.lang.NoClassDefFoundError: /home/lut/Plocha/IMS/examples/Random/random/RandomTest
[java] Caused by: java.lang.ClassNotFoundException: .home.lut.Plocha.IMS.examples.Random.random.RandomTest
[java] at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
...
[java] at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
[java] Could not find the main class: /home/lut/Plocha/IMS/examples/Random/random.RandomTest. Program will exit.
[java] Java Result: 1
(/home/lut/Plocha/IMS is root directory. In the file tree down here, it's marked as . - dot)
I have library in root directory. There is also directory examples, where are tiny, example applications using this library, each application has it's own build ant script.
The directory structure:
.
├── build.xml <-- library build-file, examples are not included in this build
├── doc
├── examples
│ ├── Random
│ │ ├── build.xml <-- example app buil-file
│ │ └── src
│ │ └── random
│ │ └── RandomTest.java <-- main class of the example
│ └── Calendar
│ ├── build.xml, src, etc. inside
│ ...
├── dest <-- after library build, dsim.jar is here
├── build
└── src <-- source files of the library
└── ims
├── Distribution
│ └── RandomGenerator.java
├── Exception
│ ├── RandomException.java
│ └── SimulationException.java
└── SimObjects
├── Entity.java
├── Event.java
├── Facility.java
...
I can build both main library (output is dsim.jar in ./dest folder) and example application (in ./examples/Random) without problems, but when I'm then trying to run the example app (ant run), I'm still getting NoClassDefFoundError.
The example app's build.xml (in ./examples/Random) looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Example - Random generator" default="compile" basedir=".">
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dest" location="dest"/>
<property name="dsim.dir" location="../../dest"/>
<property name="dest.jar" location="${dest}/random.jar"/>
<property name="main-class" location="random.RandomTest"/>
<path id="dsim-classpath">
<fileset dir="${dsim.dir}">
<include name="*.jar"/>
</fileset>
</path>
<target name="prepare" description="Create necesery directories">
<mkdir dir="${build}"/>
<mkdir dir="${dest}"/>
</target>
<target name="compile" depends="prepare">
<javac srcdir="${src}" destdir="${build}" encoding="utf8">
<classpath refid="dsim-classpath"/>
</javac>
<jar destfile="${dest.jar}" basedir="${build}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
</jar>
</target>
<target name="run" depends="compile">
<java jar="${dest.jar}" fork="true" classpathref="dsim-classpath"/>
</target>
</project>
RandomTest.java file starts with lines:
package random;
import ims.Distribution.RandomGenerator;
import ims.Exception.SimulationException;
import ims.SimObjects.Histogram;
public class RandomTest {
public static void main(String[] args) throws SimulationException {
I tried searching on google, there were several posts about classpath and problems with it, but even though I was not able to determine where could be problem. What am I doing wrong? What I miss?
Thanks a lot.
jar xf jarfileand check META-INF/manifest.mf. What does it say in Main-Class? – extraneon Dec 4 '10 at 22:24