static « aspectj « Java Enterprise Q&A





1. Which static analysis tool for Java is easiest to extend?    stackoverflow.com

Which static analysis tools for Java has easiest extension mechanism. I checked PMD But the process of writing custom rules appears to be very involved. Specifically, I want to ...

2. Are static initializers guaranteed to be called for AspectJ aspects?    stackoverflow.com

This is my first question so please be gentle. :-) I know AspectJ can create pointcuts on static initializers of java classes. But the question is whether a static initializer in ...

3. Load-Time weaving for static pages?    stackoverflow.com

A very new newbie question I would like to ask is whether it is possible to have AspectJ load-time weaving detect calls to static pages like HTML? I did manage to ...

4. AspectJ weaving: How to do a full code weave without static reference to the aspect?    stackoverflow.com

a few weeks ago i was looking for a way to create some String constants for the fileds of a java class -> Generate constants for class attributes with maven? I ...

5. AspectJ: add static initializer to class    stackoverflow.com

Some of my Java classes have static methods marked with a special annotation, @Assert, containing sanity checks. I'd like to perform these checks before any code gets actually executed. The best would ...