A class loader is an object that is responsible for loading classes in Java.
0
votes
1answer
28 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
34 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
90 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 ...
3
votes
1answer
31 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
13 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
12 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
7 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
16 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
35 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
25 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
32 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
44 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
44 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
39 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
25 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
76 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
82 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
71 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
53 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
39 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 ...
2
votes
3answers
257 views
Java - how to load different versions of the same class?
I have read a lot about Java classloaders, but so far I have failed to find an answer for this simple question:
I have two versions of com.abc.Hello.class in jars v1.jar and v2.jar. I want to use ...
86
votes
4answers
5k views
Dealing with “Xerces hell” in Java/Maven?
In my office, the mere mention of the word Xerces is enough to incite murderous rage from developers. A cursory glance at the other Xerces questions on SO seem to indicate that almost all Maven users ...
35
votes
3answers
3k views
OSGi, Java Modularity and Jigsaw
So as of yesterday morning I hadn't a clue as to what OSGi even was. OSGi was just some buzzword that I kept seeing cropping up over and over again, and so I finally set aside some time to brush up on ...
6
votes
6answers
27k views
this.getClass().getClassLoader().getResource(“…”) and NullPointerException
I have created a minimal maven project with a single child module in eclipse helios.
In the src/test/resources folder I have put a single file "install.xml". In the folder src/test/java I have ...
7
votes
1answer
6k views
How to set my custom class loader to be the default?
I'm trying to practice myself with custom class loaders, and I've some questions. Is there a way to indicate the JVM to use my custom class loader globally? For example, I wrote small app running ...
14
votes
5answers
4k views
convert Class object to bytes
If I have a Class instance at runtime, can I get its byte[] representation? The bytes I'm interested in would be in the Class file format, such that they'd be valid input to ...
8
votes
2answers
4k views
Explanation of how classloader loads static variables
Ok so this is a newbie question on java, but i can't seem to get my head around it.
I have the following code inside my class
private static final String [] LIST_CODE = gerarListCode();
private ...
67
votes
14answers
27k views
Scanning Java annotations at runtime
What is the best way of searching the whole classpath for an annotated class?
I'm doing a library and I want to allow the users to annotate their classes, so when the Web application starts I need to ...
