"alesj" wrote :
| My question is, why don't we rather take loader from annotation class if it's
not null, then use TCCL?
|
| ClassLoader loader;
| if (cl != null)
| {
| loader = cl;
| }
| else if (annotation != null)
| {
| loader = annotation.getClassLoader();
| }
| else
| {
| loader = Thread.currentThread().getContextClassLoader();
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4180569#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...