I'm hitting the same problem. The line of code causing the problem is:
manager = new CacheManager();
in EhCacheProvider... in the version of EHCache I've been using, CacheManager's
constructors are private. In the EHCache lib found in Hibernate's 3.2 source
tree (ehcache-1.2.jar), the constru
Hello,
I just got back to using Javassist after some unsuccessful earlier attempts. I was
hitting a strange NullPointerException during execution of some methods in classes I
had instrumented with Javassist reflection.
The problem turned out to be some faulty logic in ClassMetaobject for determ
Hello from a new user...
I've got a couple of instrumented classfiles - the classfiles were made reflective and
are being loaded by JBoss's standard classloader. Their relationship is something like
this (simplified, of course):
public class A {
| private SomeClass x;
| public A() {
|