All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbb.current.user.annotation.EnableCurrentUser Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
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 {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy