com.github.houbb.current.user.annotation.EnableCurrentUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of current-user Show documentation
Show all versions of current-user Show documentation
The current-user tool for java.
package com.github.houbb.current.user.annotation;
import com.github.houbb.current.user.config.CurrentUserSpringConfig;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
import java.lang.annotation.*;
/**
* 指定当前用户信息
* @author binbin.hou
* @since 0.0.12
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(CurrentUserSpringConfig.class)
//@EnableAspectJAutoProxy
public @interface EnableCurrentUser {
}