|
|
@ -2,9 +2,12 @@ package org.springblade.common.annotations; |
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.scheduling.annotation.Async; |
|
|
|
import org.springframework.scheduling.annotation.Async; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.lang.annotation.ElementType; |
|
|
|
import java.lang.annotation.Retention; |
|
|
|
import java.lang.annotation.Retention; |
|
|
|
import java.lang.annotation.RetentionPolicy; |
|
|
|
import java.lang.annotation.RetentionPolicy; |
|
|
|
|
|
|
|
import java.lang.annotation.Target; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Target({ElementType.TYPE, ElementType.METHOD}) |
|
|
|
@Retention(RetentionPolicy.RUNTIME) |
|
|
|
@Retention(RetentionPolicy.RUNTIME) |
|
|
|
@Async("asyncExecutor") |
|
|
|
@Async("asyncExecutor") |
|
|
|
public @interface LogpmAsync { |
|
|
|
public @interface LogpmAsync { |
|
|
|