Tagged Questions
The contextclassloader tag has no wiki summary.
3
votes
2answers
823 views
Thread.getContextClassLoader() == null?
Can Thread.getContextClassLoader() be null ? The javadoc is not really clear.
Should a library take this case into account ?
Update: the reason I asked is that beansbinding.dev.java.net dus not work ...
2
votes
3answers
765 views
Custom Tomcat Webapp ClassLoader
I'm trying to implement a custom classloader for tomcat. My first attempt yielded a class cast exception (apparently, tomcat tries to cast my loader to org.apache.catalina.loader.WebappLoader). ...
2
votes
1answer
524 views
How can I safely solve this Java context classloader problem?
One and only one of my hundreds of users has trouble starting my Java desktop app. It only starts for him about one-third of the time. The other two-thirds of the time a NullPointerException is thrown ...
1
vote
1answer
30 views
Custom Annotation Scanning Under Geronimo with Tomcat container
How do we get access to the jars that are in “shared/lib” directory of Geronimo Server ?
I am using following code to walk through the class loader hierarchy, but unable to get jars libraries found in ...
1
vote
2answers
343 views
Crazy ClassLoader question
The classes:
public interface Inter {
...some methods...
}
public class Impl implements Inter {
...some implementations...
}
The issue is that for some freaky reason, I have to load the ...
1
vote
1answer
442 views
Why can't java use thread context classloader when a method is literally called?
I've written a custom classloader 'JarClassLoader', which itself works ok, since the following test case is green:
public void testJarClassLoader() throws Exception
{
JarClassLoader cl = new ...
0
votes
2answers
72 views
Classloader specific properties
We developed an application container that creates a new classloader for each independent application running in the container. When a specific application is invoked, the Thread's context ...