In Java, the classpath tells the Java Virtual Machine where to look for user-defined classes and packages when running Java programs. The classpath is a parameter and can be set either on the command-line, or through an environment variable.

learn more… | top users | synonyms

0
votes
0answers
31 views

How to add to the Java classpath jars from the lib folder of war without extracting?

I want to run my program and to add to the Java classpath jars from the lib folder of war without extracting. Something like: java -classpath myJar.jar;/usr/jboss/server/default/deploy/myWar.war ...
1
vote
1answer
39 views

deploying spring mvc web app to tomcat: classpath issue

I am developing a small web app using Spring MVC framework. Basically, the app provides web interface, where user can upload XML file and verify it against specific XSD file. I put my XSD file within ...
0
votes
1answer
26 views

Properties file could not be found by getResourceAsStream(). Check the CLASSPATH or class loader

This is from an open source project where there is nearly no support. Compilation of the project went well. But I cannot test or install because of a particular property file cannot be found. I have ...
0
votes
1answer
21 views

What is the recommended way to modify the order of classpath entities when using Mule?

What is the recommended way to have jars from my $MULE_HOME/apps/app-name/lib/ directory take precedence over jars in $MULE_HOME/lib/opt directory? Not to bore you with the details, but MES 3.2.1's ...
-1
votes
4answers
30 views

How to run a custom jar file copy to classpath command using java?

I have a jar file which I'm using to run as an application. However, every time I run my application I need to add -cp "jar name" to compile it and then run the java application. How can I make a ...
0
votes
0answers
10 views

classpath mess when deploying war with org.eclipse.jetty.server.Server

I am using org.eclipse.jetty.server.Server to start jetty and deploy war. I have something like this: class Runner { private static void run(String[] arg) { Server server = new Server(); ...
0
votes
1answer
18 views

Unable to compile MaxTemperatureMapper.java for Hadoop examples: package org.apache.hadoop.mapreduce does not exist

I have been trying for quite a while to compile the first example from the book on my school's lab computer, playing with the HADOOP_CLASSPATH variable and the -classpath flag with javac, to no avail. ...
0
votes
2answers
11 views

in maven, how output the classpath being used?

For my current purposes I have a maven project which creates a war file, and I want to see what the actual classpath is it is using when creating the war. Is there a way to do that in a single command ...
0
votes
2answers
24 views

Classpath is not working

I got source code from Hermes (hermes2_src_20100121). When I extracted it has about 10 folders which is separate projects. /myd1/Exetel/Hermes_SRC/ebxml-pkg /myd1/Exetel/Hermes_SRC/CorvusEbMS ...
1
vote
1answer
17 views

Maven - Error trying to adding arbitrary classpath in Manifest.mf

I have this code to add my classpath: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> ...
0
votes
3answers
55 views

Is it possible not to add JDBC to classpath? [closed]

Is it possible not to add the JDBC to CLASSPATH? just use the source code. I am creating a program that connects to the database but I don't want my users asking them to add the JDBC to there ...
0
votes
0answers
30 views

Websphere Application Server v8.5 force to use the jar inside the libs folder

Is there a way to make the Websphere Application Server use the jar places inside the application's WEB-INF/libs folder and ignore the one that available within the server's plugin folder. I am using ...
0
votes
1answer
29 views

how to get classpath from mp3 within a jar file

I've got a problem with my classpath within a jar file. With pictures getClass().getResource("picture.png") works fine. But I need to get a mp3 file. If I put in the whole path outside of the jar file ...
1
vote
2answers
20 views

ClassPath in manifest does not work

Structure of files in my jar is: com/my/Main.class META-INF/MANIFEST.MF RXTXcomm.jar Manifest.mf consist: Manifest-Version: 1.0 Main-Class: com.my.Main Class-Path: RXTXcomm.jar (empty line ...
0
votes
4answers
52 views

How can I know at runtime if a JAR file is already in the classpath?

What is the best way to know at runtime if a particular JAR file is already in my classpath ? (if that is not the case I should add it at runtime). I do not know in advance the name of the jar nor ...
1
vote
0answers
36 views

How to add an xml of a dependant project in eclipse

I currently having an applicationContext.xml of an existing project. I created a new junit -Java project in which I kept the previous project as dependent project. I created an xml ...
1
vote
1answer
26 views

Tycho: Maven build on CLI works, but when running in Eclipse Application modules cannot be resolved

Situation I have a RCP application that gets built with Maven (using Tycho). When I run the reactor build (the master pom, see below) from the command line using mvn clean build it builds smoothly ...
0
votes
0answers
27 views

WEB-INF/lib not showing in weblogic classpath

I have a spring mvc application deployed on a weblogic server .. However the problem is , none of the libraries in my WEB-INF/lib shows up in classpath .. Is there any entry I need to do somewhere for ...
6
votes
2answers
66 views

scala.tools.nsc.IMain within Play 2.1

I googled a lot and am totally stuck now. I know, that there are similar questions but please read to the end. I have tried all proposed solutions and none did work. I am trying to use the IMain ...
1
vote
2answers
46 views

Solved: Java imported package does not exist

I am trying to use pdfbox to write a simple pdf file but the problem is that I am getting error : cannot find symbol class PDDocument I have downloaded the jar files into the same folder the ...
1
vote
2answers
67 views

Java Classpath and relative paths

If you have a relative path in the java class path, does this just search the current working directory. Does the same hold for class paths declared in a manifest file. In a manifest file is it ...
0
votes
1answer
28 views

Can't compile a simple JFACE program; java.lang.NoClassDefFoundError

I am trying to run a very simple JFace program: import org.eclipse.jface.window.*; import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; public class HelloSWT_JFace extends ApplicationWindow{ ...
0
votes
0answers
9 views

Using JavaCompiler with Classpath referencing jars within ear

I am working on a project in which an enterprise archive (ear) deployed on a JBoss server needs to compile (and run) a class dynamically. I am using the JavaCompiler class to do this - the ...
-2
votes
0answers
58 views

ClassNotFoundException applet [closed]

I want to run my applet on web application, but i got following error that will fetch on one small window.I can't get any error on console. Java Plug-in 10.5.1.255 Using JRE version 1.7.0_05-b05 Java ...
2
votes
1answer
26 views

How to add eclipse project's class patth to ant script?

What is the easiest way to add project's classpath to custom ant script inside this project? Actually I need to be able to run java tasks with current project's classpath. Project can contain manual ...
0
votes
0answers
44 views

Configure the Eclipse .classpath file in a Play application?

I'm developing a simple Play application and I'm using two machines (PC1 & PC2, PC for Personal Computer!). The Play framework is installed on PC1 at path "C:\play-2.1.0", and on PC2 at path ...
0
votes
0answers
20 views

Java Cache directory issue

In my application jar files get downloaded when applet is loaded at client. I want to access these jar files in the applet code. These files get downloaded in Java cache directory , path of which ...
-1
votes
1answer
26 views

set Java classpath in a cross platform way

After reading this answer Setting multiple jars in java classpath I'm still puzzled. Is there an only way to specify a classpath so it would run in Linux and Windows? For example, I'm running these 2 ...
-2
votes
0answers
21 views

Class not found exception for oracle driver [duplicate]

The below code compiles correctly but throws ClassNotFoundException for the oracle.jdbc.driver.OracleDriver import java.sql.*; class One { public static void main(String s[]) throws Exception ...
1
vote
2answers
56 views

Best way to override MATLAB's default static javaclasspath

MATLAB is configured to search its static java class path before searching the user-modifiable dynamic path. Unfortunately, the static path contains quite a number of very old public libraries, so if ...
0
votes
0answers
34 views

How to explain the different behaviour of spring in eclipse and standalone application

We have a web application using spring framework which works well. We try to use the same spring context in a standalone application built with maven. We managed to get the context by launching the ...
0
votes
0answers
57 views

Create Trigger in H2 Database Automatic Mixed Mode

Im new to the H2 Database and after some tests I decided to use it because of its good performance. Now I read about the H2 Database Triggers which directly calls a Java Class. When I first tried it ...
0
votes
1answer
68 views

A single jar throws ClassNotFoundException AFTER I have compiled

I have 9 jar files in my project/lib folder and my classpath appears to be accurate. Everything works fine before I compile, but after compiling a single jar, stringtree-json-2.0.5.jar, throws ...
1
vote
4answers
50 views

NoClassDefFoundError on Hello World

I am trying to run a very simple program and running into errors. I made a very simple helloworld java program, and am unable to run it from terminal on a mac. I have check to make sure classpath is ...
0
votes
3answers
79 views

Java Class.forName() from distant directory

I am currently loading Java classes using Class.forName() to load it. clazz = Class.forName("interfaces.MyClass"); But now I want to load classes from different directory, I have tried to set ...
0
votes
1answer
31 views

How do I break(for testing) the Java classpath environment variables?

I am working on understanding how Java's import/classpath situation works. I want to produce a a compilation error, so I said 'let me try fiddling with the Java environment variables' (like making ...
2
votes
2answers
112 views

Which path should I use when calling a java properties file?

Basically I have the model of my project set up this way: ModelFolder -----src -----bin, etc. -----PropertiesFolder1 --------File1.properties --------File2.properties, etc. -----PropertiesFolder2 ...
0
votes
0answers
30 views

Why does Java find one referenced class but not another in the same .jar?

If I run: java -jar myjar.jar I get: java.lang.NoClassDefFoundError: org/apache/commons/math3/stat/regression/OLSMultipleLinearRegression However, if I run: java -classpath ...
0
votes
0answers
10 views

How do i resolve this “bad class file” error(trying to operate Log4J)?

I was having trouble getting my beginner's sample Log4J program to work because of classpath issues, so I decided to try putting the sample code in the Log4j directory itself. But it seems that's a ...
0
votes
1answer
32 views

Ant as a dependency in a project that also uses ant for building/testing

In our Java project, we'd like to make use of a third-party jar that happens to have Apache Ant as one of its dependencies. However, we also use ant to build our project and run our test suite, and ...
0
votes
0answers
27 views

Cannot find properties nor service implementations using Java Web Start in OSX Lion

In a Java application I'm developing, I use: Properties files for configuration. The `ServiceLoader` class to retrieve implementations for a certain interface. SWT for the UI. SLF4J for logging. I ...
0
votes
0answers
39 views

Xtext Project: Add Jar Libraries with the Project Wizard Manager into the Classpath/Referenced Libaries of the clients Project

I have been searching quite a lot for this problem, however I can't really find a proper solution or a how-to manage this one. I have written a simple DSL for generating some code via Xtext and ...
0
votes
1answer
49 views

Eclipse Jar Build Path

I have looked over articles and forum posts about this; making a lib and adding it to your build path. Well, I did this exactly. I have a libs folder and from that, I tried to ways. I selected them, ...
1
vote
1answer
73 views

Use Eclipse classpath variable to replace absolute “sourcepath” path?

I would like to use an Eclipse classpath variable to resolve the attached source JAR file for a library in my classpath. This is the contents of my current ".classpath" file in Elcipse (Indigo): ...
2
votes
0answers
38 views

Does 'java -jar' fetch transitive dependencies?

If I execute a jar with: java -jar foo.jar and foo.jar declares a dependency on bar.jar in the Class-Path attribute of its manifest, will the jars defined in the manifest of bar.jar be added to the ...
0
votes
2answers
44 views

In eclipse, how can I find where in my classpath a type is coming from?

Maybe I'm misunderstanding something, but.. I want to be able to see that eclipse is getting Foo.class from a .jar (somewhere in the classpath) when it builds project B. If I use the 'open type' ...
0
votes
1answer
40 views

Why java -cp cannot serach the .jar of directory?

I execute java -classpath .;C:\libtest\log4j-1.2.15.jar;C:\devtool\eclipse\plugins\org.junit_4.8.2.v4_8_2_v20110321-1705\*.jar; org.junit.runner.JUnitCore com.xu.MyClass to execute all method in my ...
-1
votes
2answers
41 views

package does not exist error?

//Vector.java package simple; public class Vector{ public Vector(){ System.out.println("net.mindview.simple.Vector"); } } //List.java package simple; public class List{ public List() { ...
0
votes
2answers
60 views

Dynamically load jar in groovy

I have a groovy script createWidget.groovy: import com.example.widget Widget w = new Widget() This script runs great when I run it like this: $ groovy -cp /path/to/widget.jar ...
0
votes
1answer
67 views

Can I manually unzip a .war file, and then run the app that has embedded jetty?

Currently I have a spring-mvc with an embedded jetty instance, and I am using the maven war plugin that produces a 'fat' war file that I start using: java -jar myfat.war This makes updates to ...

1 2 3 4 5 40