Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
7answers
2k views

Java Class Loaders

Can anyone point me a good resource or explain me about the concept behind Class Loaders? I found the following resource on class loaders http://www.onjava.com/lpt/a/5586 but still no help. The ...
4
votes
2answers
2k views

Dynamic class loading in Python 2.6: RuntimeWarning: Parent module 'plugins' not found while handling absolute import

I am working on a plugin system where plugin modules are loaded like this: def load_plugins(): plugins=glob.glob("plugins/*.py") instances=[] for p in plugins: try: ...
4
votes
6answers
243 views

Java: Strong Code mobility How to?

Does anyone know how to use Java for Strong code mobility? Have you ever done it before? Here's what I try to achieve. Suppose we have 2 separate Java applications that communicate over network. App ...
3
votes
0answers
75 views

Beanshell will not allow me to add jars to the “default” JRE classloader?

I have a question about Beanshell that I can't find an answer to anywhere. I am only able to run Beanshell scripts in 1 of 2 ways: Where Classpath is defined before invoking Beanshell and Beanshell ...
3
votes
3answers
550 views

Dynamic loading a class in java with a different package name

Is it possible to load a class in Java and 'fake' the package name/canonical name of a class? I tried doing this, the obvious way, but I get a "class name doesn't match" message in a ...
1
vote
2answers
48 views

Compiling within code, not getting behavior I'd like.

So I've got some code - I'd like to compile the string 'temp' then execute it, then change the string, recompile and execute. Problem is that currently it's just executing the first bit of code ...
1
vote
2answers
63 views

Java : Executing a method of an arbitrary class in a sub package

Consider this package structure java.assignments Main.java java.assignments.lab1 Exe1.java java.assignments.lab2 Exe1.java Exe2.java Exe3.java ...
1
vote
1answer
78 views

Beanshell won't load my dynamically added JDBC Driver class?

Using JDK1.6.0_16, I have this simple program where I am trying to get beanshell 2.0b4 to load a .jar dynamically (as the documentation suggests it will do) and I am having no luck. The ...
1
vote
4answers
109 views

Which frameworks (and associated languages) support class replacement?

I'm writing my master thesis, which deals with AOP in .NET, among other things, and I mention the lack of support for replacing classes at load time as an important factor in the fact that there are ...
0
votes
0answers
78 views

Custom class loading/overriding Android-native classes

Main goal is to override Android system class (Activity, View etc) with my own implementation. http://android-developers.blogspot.com/2011/07/custom-class-loading-in-dalvik.html ClassLoader for ...
0
votes
1answer
29 views

Can't load classes from dir. with jars while can do loading classes when jars unzipped/unpacked

community! Would be great if u could help me w/ my issue. I got a custom class loader which is gonna to be java.system.class.loader - it holds urls where to find classes. Like this: public class ...