AspectJ Load time weaver doesn't detect all classes

前端 未结 3 1292
梦谈多话
梦谈多话 2021-02-07 16:07

I am using Spring\'s declarative transactions (the @Transactional annotation) in \"aspectj\" mode. It works in most cases exactly like it should, but for one it doesn\'t. We can

相关标签:
3条回答
  • 2021-02-07 16:36

    Option 1) Aspect J is open source. Crack it open and see what is going on.

    Option 2) Rename your class to Bang, see if it starts working

    I would not be surprised if there is hard coding to skip "lang' in there, though I can't say why.

    Edit -

    Seeing code like this in the source

            if (superclassnameIndex > 0) { // May be zero -> class is java.lang.Object
                superclassname = cpool.getConstantString(superclassnameIndex, Constants.CONSTANT_Class);
                superclassname = Utility.compactClassName(superclassname, false);
    
    } else {
                superclassname = "java.lang.Object";
            }
    

    Looks like they are trying to skip weaving of java.lang.stuff.... don't see anything for just "lang" but it may be there (or a bug)

    0 讨论(0)
  • 2021-02-07 16:42

    OK, I have solved the problem. Essentially, it is a Spring problem in conjunction with some custom extensions. If anyone comes across something similar, I will try to explain step by step what is happening.

    First of all, we have a custom BeanDefintionParser in our project. This class had the following definition:

    private static class ControllerBeanDefinitionParser extends AbstractSingleBeanDefinitionParser {
    
        protected Class<?> getBeanClass(Element element) {
            try {
                return Class.forName(element.getAttribute("class"));
            } catch (ClassNotFoundException e) {
                throw new RuntimeException("Class " + element.getAttribute("class") + "not found.", e);
            }
        }
    
    // code to parse XML omitted for brevity
    
    }
    

    Now, the problem occurs after all bean definition have been read and BeanDefinitionRegistryPostProcessor begins to kick in. At this stage, a class called ConfigurationClassPostProcessor starts looking through all bean definitions, to search for bean classes annotated with @Configuration or that have methods with @Bean.

    In the process of reading annotations for a bean, it uses the AnnotationMetadata interface. For most regular beans, a subclass called AnnotationMetadataVisitor is used. However, when parsing the bean definitions, if you have overriden the getBeanClass() method to return a class instance, like we had, instead a StandardAnnotationMetadata instance is used. When StandardAnnotationMetadata.hasAnnotatedMethods(..) is invoked, it calls Class.getDeclaredMethods(), which in turn causes the class loader to load all classes used as parameters in that class. Classes loaded this way are not correctly unloaded, and thus never weaved, since this happens before the AspectJ transformer registered.

    Now, my problem was that I had a class like so:

    public class Something {
        private Lang lang;
        public void setLang(Lang lang) {
            this.lang = lang;
        }
    }
    

    Then, I had a bean of class Something that was parsed using our custom ControllerBeanDefinitionParser. This triggered the wrong annotation detection procedure, which triggered unexpected class loading, which meant that AspectJ never got a chance to weave Lang.

    The solution was to not override getBeanClass(..), but instead override getBeanClassName(..), which according to the documentation is preferable:

    private static class ControllerBeanDefinitionParser extends AbstractSingleBeanDefinitionParser {
    
        protected String getBeanClassName(Element element) {
            return element.getAttribute("class");
        }
    
    // code to parse XML omitted for brevity
    
    }
    

    Lesson of the day: Do not override getBeanClass unless you really mean it. Actually, don't try to write your own BeanDefinitionParser unless you know what you're doing.

    Fin.

    0 讨论(0)
  • 2021-02-07 16:43

    If your class is not mentioned in the -verbose/-debug output, that suggests to me it is not being loaded by the loader you think it is. Can you be 100% sure that 'Lang' isn't on the classpath of a classloader higher in the hierarchy? Which classloader is loading Lang at the point in time when you trigger your breakpoint?

    Also, you don't mention AspectJ version - if you are on 1.6.7 that had issues with ltw for anything but a trivial aop.xml. You should be on 1.6.8 or 1.6.9.

    How does ltw actually work?

    Put simply, an AspectJ weaver is created for each classloader that may want to weave code. AspectJ is asked if it wants to modify the bytes for a class before it is defined to the VM. AspectJ looks at any aop.xml files it can 'see' (as resources) through the classloader in question and uses them to configure itself. Once configured it weaves the aspects as specified, taking into account all include/exclude clauses.

    Andy Clement
    AspectJ Project Lead

    0 讨论(0)
提交回复
热议问题