Как создать собственную аннотацию при весенней загрузке? - PullRequest
0 голосов
/ 10 октября 2018

Я работаю над весенним проектом и хочу сделать аннотацию.

Мне нужно что-то похожее на описание ниже:

@CustomAnnotation("b")
public int a(int value) {
  return value;
}

public int b(int value) {
  return value + 1 ;
}

--------------------------

Execute :

a(1) // should return '2'  

1 Ответ

0 голосов
/ 11 октября 2018

Вы можете использовать Аспект.Например, у вас есть следующая аннотация

@Target(METHOD)
@Retention(RUNTIME)
public @interface Delegate {
  String value(); // this is the target method name
}

Затем добавьте компонент аспекта в свой весенний контекст

@Aspect // indicate the component is used for aspect
@Component
public class DelegateAspect {
  @Around(value = "@annotation(anno)", argNames = "jp, anno") // aspect method who have the annotation @Delegate
  public Object handle(ProceedingJoinPoint joinPoint, Delegate delegate) throws Exception {
    Object obj = joinPoint.getThis(); // get the object
    Method method = ((MethodSignature) joinPoint.getSignature()).getMethod(); // get the origin method
    Method target = obj.getClass().getMethod(delegate.value(), method.getParameterTypes()); // get the delegate method
    return target.invoke(obj, joinPoint.getArgs()); // invoke the delegate method
  }
}

Теперь вы можете использовать @Delegate для делегирования методов

@Component
public class DelegateBean {

  @Delegate("b")
  public void a(int i) {
    System.out.println("a: " + i);
  }

  public void b(int i) {
    System.out.println("b: " + i);
  }
}

Давайте проверим

@Inject
public void init(DelegateBean a) {
  a.a(1);
  a.b(1);
}

Вывод

b: 1
b: 1
...