A class loader is an object that is responsible for loading classes in Java.

learn more… | top users | synonyms (3)

1
vote
0answers
4 views

embedded Jetty in Eclipse RCP

I have a problem for embeding Jetty into my Eclipse RCP application. In my RCP application, when user click some button, a browser will be opened and some jsp page shown. The jsp files are in a ...
0
votes
1answer
19 views

Delete a jar locked by server

I have a web application build using j2ee and java , where user can upload the jar or delete the existing jar and upload a new one. Since server is running and the jars are locked by it, when user ...
0
votes
2answers
36 views

Accessing a different folder using classloader

URL root = Thread.currentThread().getContextClassLoader().getResource(packageName.replace(".", "/")); i use the above statement to access .class files given a package name. But in some cases i need ...
0
votes
1answer
18 views

Java. Read folder from 'resources' while executing JAR: URI is not hierarchical

I put a folder 'profiles' (contains language profiles, which I need to use when executing JAR) into 'resources' folder. To read it I write: URL langProfilesURL = ...
1
vote
0answers
35 views

JVM Perm Gen / System freeze after capturing a function which is generated in an interpreter run

I am using Scala dynamically embedded, and I thought I was smart to save re-interpretation of bits by capturing them in a Function0 of the host program. Approximately like this: object Code def ...
0
votes
3answers
91 views

ClassNotFound exception

public class dummy { public static void main(String[] args) { System.out.println("hello world"); } public void init() { //"dummy2" class defined in a different jar dummy2 d = ...
0
votes
1answer
46 views

How to reload previously loaded classes that changed during runtime?

I'm writing an application that needs to reload a previously loaded class during runtime. The reason is that the class is auto-generated during runtime, and the new implementation changes the way the ...
4
votes
1answer
33 views

Make a Scala interpreter oblivious between interpret calls

Is it possible to configure a Scala interpreter (tools.nsc.IMain) so that it "forgets" the previously executed code, whenever I run the next interpret() call? Normally when it compiles the sources, ...
1
vote
1answer
20 views

Creating a ClassLoader to load a JAR file from a byte array

I'm looking to write a custom class loader that will load a JAR file from across a custom network. In the end, all I have to work with is a byte array of the JAR file. I cannot dump the byte array ...
0
votes
0answers
18 views

Have JBoss 6 provide an implementation for the result of a remote EJB method call

I am working with JBoss 6 and a JEE5 project under eclipse. Currently, there are several local business interfaces and only one remote business interface. The project is split in modules so that the ...
0
votes
0answers
13 views

interface org.hibernate.jdbc.ConnectionWrapper is not visible from class loader

I know that this error is being fixed in some hibernate release. https://hibernate.atlassian.net/browse/HHH-2281 But could someone explain me the cause of this error and relation to class loader? ...
0
votes
4answers
51 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 ...
0
votes
1answer
26 views

Jboss 4.2 Class loading exception

I have a jar in server/lib/sample.jar. sample.jar file consists .class files related to application so how should access server/lib instated of application.war/web-inf/classes . jboss-web.xml ...
0
votes
0answers
15 views

Using Javassist on Eclipse

I'm starting with Javassist, I have implemented an example of Hello World with following code: HelloWorld.java public class HelloWorld { public static void main(String[] args) { new ...
0
votes
0answers
13 views

dll already loaded in another classloader in netbeans using tomcat

Currently I develop an java web application using spring mvc, netbeans as IDE, and tomcat as web server. I want to use 3rd party jar and it seems no problem occurs when I use the jar in simple java ...
0
votes
1answer
23 views

detect AppEngine vs basic server

I am developing a web app to run on either Google's AppEngine or a basic server with file storage (it may not stay that way but that's the current status). How do I detect whether the AppEngine ...
0
votes
1answer
10 views

JBoss AS 6.0.1 class resourcestream

I am trying to migrate application from Jboss 4.2.3 to Jboss 6.0.1.in our application i have to access a resource (image) from war folder. WAR |__ logo.jpg |__images/icons |__WEB_INF ...
0
votes
0answers
17 views

JBoss AS 6.0.1 - getResourceStream returns null

I am migratingmy application from JBoss 4.2.2 to JBoss 6.0.1. In my application i am using getClassLoader.getResourceStream("Name") to get file stream. It works fine in Jboss 4.2.2 (it returns ...
0
votes
0answers
36 views

java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

I'm new to Java, so I might be missing something very basic. I wrote a simple application, which basically uses an exteranl jar (testlink-java-api-1.9.3-5.jar)> When executing the following code: ...
0
votes
1answer
27 views

classloaders with cxf and jax-ws

in Difference between Jax-ws, axis2, cxf Daniel wrote And for the most part, if you start with the in-jdk JAX-WS impl, you can drop in CXF at any time and it would still work. Can this behave ...
0
votes
1answer
34 views

Failed to configure Webapp Classloading on Jetty 9 and set System Classes

I'm trying to deploy a web application that extends the class: org.eclipse.jetty.proxy.ProxyServlet. In the start.ini file, I set: OPTIONS=Server,client,proxy and I verified that ...
0
votes
0answers
8 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 ...
0
votes
0answers
32 views

Ant JUnit task NoClassDefFoundError when run in existing JVM

I went for the JUnit Ant task solution where I provide the JUnit library through the task's element: <target name="test" depends="compile-tests" description="Run unit tests"> <junit ...
0
votes
0answers
45 views

Eclipse Link Excpetions while deploying CXF based Web application

I have a Weblogic 10.3.5 with Java 1.6.0_24 on a Windows machine. I use CXf 2.2.3 for managing the web service components Recently,started upgrading to Weblogic 12.1.1 with JDK 1.7.0_13. But the ...
0
votes
1answer
29 views

Is it possible to specify WebSphere classloader delegation mode in a WAR file?

I'm working on an app that is distributed as a WAR file. Among our supported app servers are WebSphere 7.0, 8.0, and 8.5. This WAR file requires PARENT_LAST classloader delegation mode so that bundled ...
0
votes
1answer
45 views

Classloader used in Android Application

I ran into a thorny problem in dealing with Android applications - loading class from a .zip or .dex in an app. I cant deal with the Classloader problem .Please help me, thanks. im trying to load a ...
0
votes
0answers
33 views

How to use a class loader to load a jar from my website in a script for a java application

I am writing scripts for a bot client for a java-based game called Runescape. The scripts follow a basic skeleton and can be saved as jars and loaded in the bot client's script folder. What I want to ...
4
votes
2answers
313 views

Cannot cast to type though type

I get the following exception when I want to cast one type to another. java.lang.ClassCastException: org.paston.certification.data.impl.BRL6000 cannot be cast to ...
0
votes
0answers
30 views

Use local jars in JNLP program

I have java program that needs many jars. Now I want run it via JNLP. Jars are from client software, that user have installed. I do not want to include hundreds jars in JNLP file and download it. For ...
0
votes
3answers
40 views

Resources and config loading in maven project

I'm using Maven for desktop applycation. I read about Maven standart directory layout and I have this project structure for now: App |-- pom.xml `-- src |-- main |-- java | `-- ...
0
votes
0answers
21 views

Accessing resources with a LWJGL applet

I have a game made in LWJGL that I am trying to port to an applet. After my first attempt, I realized that I could not use new FileReader(path) for the applet and found that I should use ...
0
votes
1answer
26 views

Class loading in eclipse plugin

I made a eclipse plugin that acts on JavaProject. It needs access to information contained in the bytecode of the classes of the project and, therefore, I used a URLClassLoader (saying to it that the ...
0
votes
1answer
26 views

as3 removeChild and Loaders in them?

I am creating multiple loaders to load images with a for loop. I am then placing those images in a new MoveClip. When needed I am going to removeChild(flagHolder); Which holds all the images of ...
0
votes
0answers
15 views

URLClassloader not able to access classes in the classpath

I created a jar file at runtime( this jarfile has some dependency jar which are in the classpath). Now I have to load the newly created jar at runtime. Im using URLClassLoader to load the classes in ...
0
votes
3answers
77 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 ...
3
votes
5answers
77 views

When are imported classes loaded in java?

In the following scenario , import A; public class B{ static A a; static{ a = new A(); } } Is it possible that the static initialization block gets called before a is properly ...
2
votes
1answer
83 views

Class getResourceAsStream() resource in a different package

I have something like the following project structure -project -src/main/java // source folder -com.mypackage -Utility.java -some.properties ...
2
votes
1answer
73 views

Unloading a classloader

my final goal is to be able to reload classes after they have been already loaded to the JVM. After reading the following answer Unloading classes in java? , I have been trying to implement my ...
-1
votes
2answers
27 views

Pass over ExceptionInInitializerError

I have a static initialization block and from it is thrown an ExceptionInInitializerError Exception. Is there any way to pass over this exception and to access the other fields and methods from this ...
0
votes
0answers
58 views

How to load extends jar file in android?

How to load extends jar file in android? I used: Class.forName("me.barwnikk.test",false,new URLClassLoader(new URL[]{new File("/sdcard/r.jar").toURL()})); //throw ClassNotFoundException ...
0
votes
1answer
41 views

Richfaces 4.3.1 weblogic 10.3.5.0 duplicate key on deploy

I'm having trouble with richfaces 4.3.1 on weblogic 10.3.5.0, on deploy the following exception happens: java.lang.RuntimeException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! ...
0
votes
1answer
17 views

How can I deploy JPA 2 applications on JBoss SOA 5.x?

I am working on migrating an application originally written using EJB3 persistence (JPA 1.0) on JBoss SOA server version 5.2 so that it uses type safe queries and criteria queries from JPA 2.0 ...
2
votes
1answer
51 views

Same native library loaded by different class loader

Please consider the following scenario: I have two java classes, loaded using different system class loaders. I have a native library that has a queue implemented. Both the classes will load the same ...
0
votes
0answers
21 views

Determine from where a class is loaded on Android System

I'm currently kind of reverse engineering an Android Multimedia Box. There is one apk, which defines several Activites, but has no classes.dex (and no odex) at all. So the classes have to be loaded ...
0
votes
2answers
50 views

ClassNotFoundException when loading JAR file with ClassLoader

I picked up instructions (and code) here and there on creating and using a class from a jar file. I created a Test.java file : package a; public class Test { public String print(){ ...
0
votes
1answer
65 views

Cannot start Java RMI Server class

I seem to be following instructions in the book I'm using as well as in Oracle's Java SE docs but cannot overcome the following error: Error: Could not find or load main class ...
1
vote
1answer
143 views

What are the different ways to load a class in Java

I'm learning java, and in the process of going through the ClassNotFoundException concept, I have come across the term Class.forName("xyz");. I know that this is one way of loading a class. My ...
4
votes
1answer
94 views

Is there anything like GroovyScriptEngine and GroovyClassLoader in Scala?

I noticed scala is jsr 223 compliant https://issues.scala-lang.org/browse/SI-874 ... but is it able to do stuff like GroovyScriptEngine ? I consider adding a scala scripting support to our product so ...
1
vote
1answer
115 views

Dynamically loading Jar and instanciate an Object of a loaded Class

I try to load dynamically a jar into my Java project. Here's the class loader's code : public class ClassLoad { public static void main(String[] args) { String filePath = new ...
0
votes
0answers
18 views

Eclipse/Equinox: Printing the details of plugin when ClassNotFoundException occurs

Whenever the classloaders are messed up in an Equinox (or Eclipse) runtime, you get a ClassNotFoundException, with a stack trace similar to this: Caused by: java.lang.ClassNotFoundException: foo.Bar ...

1 2 3 4 5 31