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

com.gccloud.starter.common.annation.InjectAnonUser Maven / Gradle / Ivy

package com.gccloud.starter.common.annation;

import java.lang.annotation.*;

/**
 * 接口匿名访问时,如果携带token调用接口,shiro无法获取用户信息
 * 使用该注解的方法可以获取到用户信息
 * 不要在非匿名方法上使用该注解
 *
 * @author liuchengbiao
 * @date 2020-06-19 09:47
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface InjectAnonUser {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy