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

com.seepine.secret.annotation.NotExpose Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta.53
Show newest version
package com.seepine.secret.annotation;

import java.lang.annotation.*;

/**
 * 不暴露接口,需要鉴权 使用场景:某controller上加了Expose,但是内部某个方法需要鉴权
 *
 * @author seepine
 */
@Documented
@Inherited
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface NotExpose {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy