Tagged Questions

1
vote
4answers
58 views

Java: How to load Class stored as byte[] into the JVM?

If one has serialized the entire .class file into byte[], and assuming the name of the class is known (passed along with the byte[]), how do you convert byte[] -> Class -> then loa …
4
votes
2answers
51 views

java: Difference between thread’s context class loader and normal classloader

What is the difference between a thread's context class loader and a normal classloader. That is, if Thread.currentThread().getContextClassLoader() and getClass().getClassLoader() …
1
vote
3answers
128 views

Copy java object/class from one classloader to another classloader

Hi is there a way to copy one class loaded context (atrributes etc) from one classloader (for instance a 'made' class Point) to another classloader? Making clear, Example: I hav …
0
votes
2answers
36 views

Directory list of JAR file within classpath

The typically method to reference a file contained with a JAR file is to use ClassLoader.getResource. Is there a way to get the contents of a directory within a JAR files (similar …
2
votes
2answers
76 views

java FileInputStream - differences based on how the File object is referenced: classloader/filesystem

Hi all, I'm using apache POI to extract some data from an excel file. I need an InputStream to instantiate the POI HSSFWorkbook class HSSFWorkbook wb = new HSSFWorkbook(inputStream …
1
vote
3answers
68 views

Is there a way to get which classes a ClassLoader has loaded?

I am trying to implement some unit testing for an old framework. I am attempting to mock out the database layer. Unfortunately our framework is a bit old and not quite using best p …
0
votes
2answers
50 views

Detect whether Java class is loadable

I have two programs: one CLI program, and one GUI. The GUI is a frontend for the CLI, but also a GUI for another program as well. I am importing the CLI's classes and extending …
1
vote
2answers
42 views

Custom class loader in Constructor.newInstance

I'm using rhino via the bean scripting framework to create and configure objects in my java process. Some of the classes used in the scripts need to be loaded dynamically as they w …
0
votes
1answer
46 views

Groovy with Grape and AntBuilder classloader problem

I wanted to use groovy for a little ftp script and found this post http://www.hhhhq.org/blog/2009/05/01/ftp-using-groovy-and-ant/ Since there were several dependencies I wanted to …
0
votes
2answers
55 views

Dynamic loading problem when program executes from a jar

Hi all, I have an application which is extendable through java classes that conform to a given interface. If I run the program from the command line classes, I am able to instanti …
4
votes
4answers
144 views

Java Classloader - how to reference different versions of a jar

Hi All, This is a common problem. I'm using 2 libraries A.jar and B.jar and these depend on different versions of the same jar. Let's say that at runtime I need THIS.x.x.x.jar MY …
0
votes
2answers
73 views

How to get classloader for a bundle in equinox?

How can I get the classloader for a osgi bundle in eclipse equinox setup. Thanks, Suraj
1
vote
1answer
92 views

Singleton across classloaders/EJB:How to avoid multiple instance of JCS Cache due to multiple class loader/EJB’s?

I want to use JCS (Java Cache System) to cache ldap queries which should be shared by multiple EJB's (class loaders) to avoid the duplicate searches. I have created a singleton wr …
1
vote
2answers
84 views

How do you share Java Caching System (JCS) resource across multiple EJB

I am using JCS to store the ldap search results which should be shared by multiple EJB. I have created a singleton class to initialize JCS only once but due to EJB's classloader, i …
0
votes
1answer
31 views

Clean classloader from timerTask connectionpool.

i have an application with some timertask, connectionPools. I also developpe a classloader and sometime i need to clean the classloader. The problem is that the timer task is like …

1 2 3 next
15 30 50 per page