Tagged Questions
0
votes
1answer
89 views
ClassNotFoundException even though the class is properly defined (I think)
There is a similar question posted here but the answer seems to have never been found. I have tried a clean and am still getting a ClassNotFoundException.
So what is happening, like in the linked ...
6
votes
3answers
77 views
Reason for ClassNotFoundException to be a checked exception
What is the reason behind ClassNotFoundException being a checked exception?
I've been guessing and googling trying to understand why consider class not found as checked exception, because all my mind ...
0
votes
2answers
39 views
ClassNotFoundException: org.springframework.jdbc.datasource.DriverManagerDataSource
Seems like yet another missing library problem, but I just can't figure it out.
I'm new to the Spring framework and I was trying to do some basic database operations.
I'm using STS 3.2.0, Apache ...
0
votes
0answers
37 views
ClassNotFoundException applet
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
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
...
0
votes
1answer
32 views
ClassNotFoundException problems with manifest in created JAR
I'm trying to create a JAR file from my sources, but when I run it I get class not found exception - it can't find the main class, even though I defined it in the MANIFEST.MF file. Can you spot any ...
0
votes
3answers
72 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
0answers
25 views
Exception on InternetExplorerDriver
I am calling a simple Java Class Test through a JSP Page.
This class Test will instantiate a IE with Selenium IE driver and search with Google.
package com.tcs;
import java.io.File;
import ...
0
votes
4answers
92 views
Why does this program get a ClassNotFound Exception? [closed]
I need this simple virtual bank program to deserialize a main account each time it is started. I've done this, but the GUI class that runs this method continues to give me a ...
0
votes
1answer
56 views
Class not found Exception from Weblogic 9.2
In my JSF project workspace, I have a Java project A and a Weblogic EJB project B that uses the Java project.
On generating the EAR I can see that the jar for Project A and B are there in the EAR as ...
0
votes
0answers
39 views
Applet not able to load a class from JAR file
In my application, I am using apache PDFBox to print the PDF directly to the printer.
Here I want to print the PDF on client machine So I am using applet which will invoke the java class and push the ...
0
votes
0answers
57 views
ClassNotFoundException running jnlp JavaFX
I did a fxml chart to embed into a web page. I used the javafx package tools to create my jar file and my jnlp file. When I try to run my jar file, or double clicking the file or to command line, the ...
0
votes
1answer
54 views
Deploy Applet on Apache server
I've written a Java applet game that I want to deploy on my Apache server. Code + resources are in a self signed .jar with accompanying HTML doc both in the root dir. Run on my local machine ...
0
votes
1answer
58 views
Memcached dependency jar not working with maven project and throwing java.lang.ClassNotFound: net.spy.memcached.MemcachedClient Exception
My Project is in linux environment. I want to add memcached jar dependency jar in my project. So I have added following lines in pom.xml as described here.
<repositories>
...
1
vote
1answer
58 views
jar file not working when running it
I don't think that I did something wrong when I created the jar file, but here it is:
jar cvfm JarTest.jar manifest.txt Main.class Main$ThisPanel.class Main$ThisPanel$1.class Main$ThisPanel$2.class ...