web-dev-qa-db-ja.com

春のブーツでカスタム注釈を作成するにはどうすればよいですか?

私は春のプロジェクトに取り組んでおり、注釈を付けたいです。

以下のようなものが必要です。

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

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

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

Execute :

a(1) // should return '2'  
3
Djamel Kr

Aspectを使用できます。たとえば、次の注釈があります

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

次に、アスペクトコンポーネントをSpringコンテキストに追加します

@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
12
Dean Xu