Ich möchte eine benutzerdefinierte Protokollierung in meinem Grails-Projekt erstellen.AOP mit Grails
Mein Code:
class MyService{
@AuditLog
def method1() {
println "method1 called"
method2()
}
@AuditLog
def method2() {
println "method2 called"
}
}
Interceptor:
class AuditLogInterceptor implements MethodInterceptor {
@Override
Object invoke(MethodInvocation methodInvocation) throws Throwable {
println "${methodInvocation.method}"
return methodInvocation.proceed();
}
}
Frühling config:
aop {
config("proxy-target-class": true) {
pointcut(id: "auditLogInterceptorPointcut", expression: "@annotation(xxx.log.AuditLog)")
advisor('pointcut-ref': "auditLogInterceptorPointcut", 'advice-ref': "auditLogInterceptor")
}
}
auditLogInterceptor(AuditLogInterceptor) {}
Das Ergebnis:
public java.lang.Object xxx.MyService.method1()
method1 called
method2 called
Ich würde gerne die Annotation Feuer für Methode 2 auch sehen. Was vermisse ich?
Schöne Einsicht! Ich denke, es wäre großartig, wenn Grails Magie bietet, um Aufrufe an Methoden in derselben Serviceklasse an die Proxy-Klasse zu delegieren. –