Using AspectJ logging without Spring

22,653

Solution 1

try this link for a simple application showing use of Load time weaving without using Spring http://ganeshghag.blogspot.in/2012/10/demystifying-aop-getting-started-with.html

all that would be needed is aspectj runtime and weaver jars, and a META-INF\aop.xml file containing proper config.

also refer link for details about using aspectj ltw without spring http://www.eclipse.org/aspectj/doc/next/devguide/ltw.html

Solution 2

You can use aspectj without Spring (or log4j) to log messages at any aspectj supported joinpoints,

For example,

public aspect ListAllMethodExecution {
    private int callDepth; 

    private pointcut executionJoinPoints(): !within(ListAllMethodExecution) && execution (* *.*(..));

    before(): executionJoinPoints(){
        print("Before call " + thisJoinPoint);
        callDepth++;
    }

    after(): executionJoinPoints(){
        callDepth--;
        print("After call " + thisJoinPoint);
    }

    private void print(String s){
        for(int i=0; i<callDepth; i++)
            System.out.print("    ");
        System.out.println(s);
    }
}

You can modify the pointcut expression to log from a specific packages on specific events or other static joinpoints that you may be interested in. Also you can modify the print method as you wish to redirect logs.

You can use load time or compile time weaving as suits to you. Hope this helps.

Share:
22,653
Himanshu Yadav
Author by

Himanshu Yadav

Big data and distributed systems

Updated on July 09, 2022

Comments

  • Himanshu Yadav
    Himanshu Yadav almost 2 years

    I have just working on an old application which has poor log or no logs. It does not implement Spring framework.
    Is it possible to implement AspectJ logging functionality without Spring?
    If yes please suggest me some good tutorials.