Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I don know what I have done differently, when I was trying fix it today, but weaver started to work, but still not in expected way. But the problem is different now, so plese look here: stackoverflow.com/questions/14448151/… (I hope someone would solve it.) – Nicnajder Jan 21 at 22:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.