1 package de.spring.example.annotation;
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
5 import java.lang.annotation.Target;
6 import java.lang.annotation.ElementType;
7 import org.springframework.stereotype.Component;
9 @Target({ElementType.METHOD, ElementType.TYPE})
10 @Retention(RetentionPolicy.RUNTIME)
12 public @interface commitTransactionalN2A {