1
vote
2answers
22 views

Separate jar for EJB3 Entity classes

When I separate my EJB3 entities (annotated with @Entity) from my EJB Module and put them in a separate jar file, where should my Persistence.xml file go, in my EJB module or in my entities.jar? And ...
0
votes
0answers
78 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
59 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
0answers
160 views

Migration from JBoss 4 to JBoss 7.1.1 with strange ClassNotFoundException - Class-Path failure?

i try to migrate from JBoss 4 to Jboss 7.1.1. But i got this error: 13:38:23,004 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-3) MSC00001: Failed to start service ...
1
vote
2answers
61 views

Running servlet within Eclipse requires libs to be defined 3 times - am I doing something wrong?

Hullo - issue is this: I wrote a servlet in Eclipse which requires mysql-connector-java-5.1.22-bin.jar To compile I need to add the jar via the project's "Java Build Path" To deploy I need to add ...
0
votes
1answer
858 views

ClassNotFound exception during deploy

I am in trouble! I am trying to deploy my app on JBoss AS 7.1.1.Final by IntelliJ IDEA 11 and during deploy I have this exception : 12:23:42,566 ERROR [org.jboss.msc.service.fail] (MSC service ...
0
votes
1answer
160 views

ClassNotFoundExceptoin is being thrown due to Classloader loading the wrong library

I am getting a ClassNotFoundException on the following class: org.apache.commons.pool.impl.CursorableLinkedList$Cursor. I have reviewed the web app, which is packaged into an EAR and noticed ...
0
votes
1answer
1k views

java.lang.NoClassDefFoundError in eclipse and tomcat however WAR is working in standalone tomcat

I am trying to deploy maven generated war file into tomcat server in eclipse.. but I get java.lang.NoClassDefFoundError on a jar file. I verified multiple times, jar is in .war and corresponding class ...
1
vote
1answer
752 views

Java Web Start - ClassNotFoundException when running

I am now trying to deploy a Java application with Java Web Start. The application works fine when running standalone. I exported the project as a runnable .jar file, and then wrote the corresponding ...