blob: 9fbf933755c28b1a1bc390195e050183b5ac3982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//package com.foliofn.infra.logging;
import java.lang.reflect.Field;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect public class Foo2 {
// aspect Foo {
public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
// Object around(Object caller): call(Throwable+.new(String, ..)) && this(caller) && if(true==true) {
@Around("call(Throwable+.new(String, ..)) && this(caller)")
public Object annotateException(ProceedingJoinPoint jp, Object caller) {
return null;
}
// @Pointcut("call(Throwable+.new(String, ..)) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer( exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, String exceptionMessage) {
// return null;
// }
// @Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
// public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
// return true;
// }
//
// @Around("exceptionInitializer(caller, exceptionMessage)")
// public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
// return null;
// }
}
|