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

com.biz.web.rbac.BizVerification Maven / Gradle / Ivy

Go to download

BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。

The newest version!
package com.biz.web.rbac;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 权限校验
 *
 * @author francis
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface BizVerification {

    /**
     * 默认为空,所有角色都能访问
     */
    String[] roles() default "*";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy