In my project, which is SpringMVC web-application, i want to get a logging to work and I want to do it in AOP style. But now i got stuck in this situation:
I have implemented LogAspect in bundle called background:
@Aspect
public class LogAspect {
@Pointcut("@annotation(logMethod)")
public void logMethodAnnotated(LogMethod logMethod){}
@Before("logMethodAnnotated(logMethod)")
public void beforeLogMethodAnnotated(JoinPoint jp,LogMethod logMethod){
//Actions
}
@After("logMethodAnnotated(logMethod)")
public void afterLogMethodAnnotated(JoinPoint jp,LogMethod logMethod){
//Actions
}
}
In META-INF/spring/background-osgi.xml i have declared:
<context:load-time-weaver/>
and META-INF/aop.xml looks like this:
<!DOCTYPE aspectj PUBLIC
"-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
<aspectj>
<weaver>
<!-- only weave classes in our application-specific packages -->
<include within="simon.background.*"/>
<include within="simon.frontend.controller.*"/>
</weaver>
<aspects>
<!-- weave in just this aspect -->
<aspect name="simon.background.log.LogAspect"/>
</aspects>
</aspectj>
So as you can see, i want to weave advices from simon.background.log.LogAspect into controller-classes in my frontend bundle, because i want to log informations about every method annotated with @LogMethod. But advices declared in background budle run only for methods declared within background bundle, but not for methods declared in frontend.controller. I have read some tutorials found by google, everywhere was something like put <context:load-time-weaver aspectj-weaving="on"/> into your applicatonContext.xml and it will work, but actually it does not. Can anyone help?