|
|
@@ -0,0 +1,13 @@
|
|
|
+package com.java110.core.annotation;
|
|
|
+
|
|
|
+
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+import java.lang.annotation.*;
|
|
|
+
|
|
|
+@Target(ElementType.TYPE)
|
|
|
+@Retention(RetentionPolicy.RUNTIME)
|
|
|
+@Documented
|
|
|
+@Component
|
|
|
+public @interface Java110Transactional {
|
|
|
+}
|