Uploaded image for project: 'Tapestry'
  1. Tapestry
  2. TAPESTRY-1301

Class not found with cglib loaded in a parent (non-webapp) classloader. (CglibProxiedPropertyChangeObserverImpl)

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 4.1.2
    • 4.1.2
    • Framework
    • None
    • Tomcat 5.5.20

    Description

      We need CGLIB to reside in Tomcat's common/lib Classloader due to Hibernate-Issues.
      In this case, there is a ClassNotFoundException from CglibProxiedPropertyChangeObserverImpl.observePropertyChanges().

      This is, because net.sf.cglib.proxy.Enhancer's static create-method falls back on the classloader, in which it is loaded. The correct behaviour, imo, would be to make the enhancer use the thread-context-classloader.

      Proposed patch (tested, works well):
      In o.a.t.record.CglibPropertyChangeInterceptor change the lines (90ff):
      _________________
      Object ret = Enhancer.create(property.getClass(), interfaces,
      new ObservableMethodFilter(),
      new Callback[]

      { new LazyProxyDelegate(property), new CglibPropertyChangeInterceptor(component, property, propertyName)}

      );
      _______________

      into:
      ______________________
      Enhancer e = new Enhancer();
      e.setClassLoader( Thread.currentThread().getContextClassLoader() );
      e.setSuperclass(property.getClass());
      e.setInterfaces(interfaces);
      e.setCallbackFilter(new ObservableMethodFilter());
      e.setCallbacks(new Callback[]

      { new LazyProxyDelegate(property), new CglibPropertyChangeInterceptor(component, property, propertyName)}

      );
      Object ret = e.create();
      ________________________

      Attachments

        Activity

          People

            jkuhnert Jesse Kuhnert
            mschulte Marcus Schulte
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: