美文网首页学习笔记
03【笔记】 Shiro属性注入配置文件

03【笔记】 Shiro属性注入配置文件

作者: 杨不易呀 | 来源:发表于2020-04-24 09:51 被阅读0次

    Shiro属性注入配置文件

    package top.yangbuyi.system.config;
    import lombok.Data;
    import org.springframework.boot.context.properties.ConfigurationProperties;
    
    /**
     * ClassName: ShiroPropeties
     * Description: 杨不易网站 :www.yangbuyi.top
     * date: 2020/4/14 19:49
     *
     * @author TeouBle
     * @author yangbuyi
     * @ shiro 配置文件类
     * @since JDK 1.8
     */
    // 注入配置属性
    @ConfigurationProperties(prefix = "shiro")
    @Data
    public class ShiroProperties {
        /**
         * 加密方式
         */
        private String hashAlgorithmName = "md5";
        /**
         * 散列次数
         */
        private Integer hashIterations = 2;
        /**
         * 登陆URL
         */
        private String loginUrl;
        /**
         * 没有授权的跳转url
         */
        private String unauthorizedUrl;
        /**
         * 放行url
         */
        private String[] anonUrls;
        /**
         * 退出url
         */
        private String logoutUrl;
        /**
         * 拦截url
         */
        private String[] authcUrls;
    }
    

    相关文章

      网友评论

        本文标题:03【笔记】 Shiro属性注入配置文件

        本文链接:https://www.haomeiwen.com/subject/rrjxwhtx.html