我的编程空间,编程开发者的网络收藏夹
学习永远不晚

springboot+thymeleaf+shiro标签怎么用

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

springboot+thymeleaf+shiro标签怎么用

本篇内容介绍了“springboot+thymeleaf+shiro标签怎么用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

1、pom中加入依赖

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId><version>1.5.6.RELEASE</version></dependency><!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf --><dependency><groupId>org.thymeleaf</groupId><artifactId>thymeleaf</artifactId><version>${thymeleaf.version}</version></dependency>        <!-- shiro安全框架 --><dependency><groupId>org.apache.shiro</groupId><artifactId>shiro-spring</artifactId><version>1.4.0</version></dependency><!--thymeleaf-shiro-extras--><dependency><groupId>com.github.theborakompanioni</groupId><artifactId>thymeleaf-extras-shiro</artifactId><version>1.2.1</version></dependency>

2、用户-角色-权限的表关系

//用户表public class User {    private Integer userId;    private String userName;    private Set<Role> roles = new HashSet<>();}//角色表public class User {    private Integer id;    private String role;    private Set<Module> modules = new HashSet<>();    private Set<User> users = new HashSet<>();}//权限表public class Module {    private Integer mid;    private String mname;    private Set<Role> roles = new HashSet<>();}        //用户查询<resultMap id="BaseResultMap" type="com.lanyu.common.model.User" >    <id column="user_id" property="userId" jdbcType="INTEGER" />    <result column="user_name" property="userName" jdbcType="VARCHAR" />    <!-- 多对多关联映射:collection -->    <collection property="roles" ofType="Role">      <id property="id" column="c_id" />      <result property="role" column="role" />      <collection property="modules" ofType="Module">        <id property="mid" column="mid"/>        <result property="mname" column="mname"/>      </collection>    </collection>  </resultMap>  //查询用户信息,返回结果会自动分组,得到用户信息  <select id="selectByPhone" resultMap="BaseResultMap" parameterType="java.lang.String" >    SELECT  u.*, r.*, m.*    FROM        sys_user u    INNER JOIN sys_user_role ur ON ur.userId = u.user_id    INNER JOIN sys_role r ON r.rid = ur.roleid    INNER JOIN sys_role_module mr ON mr.rid = r.rid    INNER JOIN sys_module m ON mr.mid = m.mid    WHERE  u.user_name=#{username} or u.phone=#{username};  </select>

3、编写shiro核心类

@Configurationpublic class ShiroConfiguration {        //用于thymeleaf模板使用shiro标签    @Bean    public ShiroDialect shiroDialect() {        return new ShiroDialect();    }    @Bean(name="shiroFilter")    public ShiroFilterFactoryBean shiroFilter(@Qualifier("securityManager") SecurityManager manager) {        ShiroFilterFactoryBean bean=new ShiroFilterFactoryBean();        bean.setSecurityManager(manager);        //配置登录的url和登录成功的url        bean.setLoginUrl("/loginpage");        bean.setSuccessUrl("/indexpage");        //配置访问权限        LinkedHashMap<String, String> filterChainDefinitionMap=new LinkedHashMap<>();//        filterChainDefinitionMap.put("/loginpage*", "anon"); //表示可以匿名访问        filterChainDefinitionMap.put("/admin/*", "authc");//表示需要认证才可以访问        filterChainDefinitionMap.put("/logout*","anon");        filterChainDefinitionMap.put("/img/**","anon");        filterChainDefinitionMap.put("/js/**","anon");        filterChainDefinitionMap.put("/css/**","anon");        filterChainDefinitionMap.put("/fomts/**","anon");        filterChainDefinitionMap.put("/**", "anon");        bean.setFilterChainDefinitionMap(filterChainDefinitionMap);        return bean;    }    //配置核心安全事务管理器    @Bean(name="securityManager")    public SecurityManager securityManager(@Qualifier("authRealm") AuthRealm authRealm) {        System.err.println("--------------shiro已经加载----------------");        DefaultWebSecurityManager manager=new DefaultWebSecurityManager();        manager.setRealm(authRealm);        return manager;    }    //配置自定义的权限登录器    @Bean(name="authRealm")    public AuthRealm authRealm(@Qualifier("credentialsMatcher") CredentialsMatcher matcher) {        AuthRealm authRealm=new AuthRealm();        authRealm.setCredentialsMatcher(matcher);        return authRealm;    }    //配置自定义的密码比较器    @Bean(name="credentialsMatcher")    public CredentialsMatcher credentialsMatcher() {        return new CredentialsMatcher();    }    @Bean    public LifecycleBeanPostProcessor lifecycleBeanPostProcessor(){        return new LifecycleBeanPostProcessor();    }    @Bean    public DefaultAdvisorAutoProxyCreator defaultAdvisorAutoProxyCreator(){        DefaultAdvisorAutoProxyCreator creator=new DefaultAdvisorAutoProxyCreator();        creator.setProxyTargetClass(true);        return creator;    }    @Bean    public AuthorizationAttributeSourceAdvisor authorizationAttributeSourceAdvisor(@Qualifier("securityManager") SecurityManager manager) {        AuthorizationAttributeSourceAdvisor advisor=new AuthorizationAttributeSourceAdvisor();        advisor.setSecurityManager(manager);        return advisor;    }}— - - -- - -- - -- - -- - - -- - - - -- public class AuthRealm extends AuthorizingRealm {    @Autowired    private UserService userService;    //认证.登录    @Override    protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {        UsernamePasswordToken utoken=(UsernamePasswordToken) token;//获取用户输入的token        String username = utoken.getUsername();        User user = userService.selectByPhone(username);        return new SimpleAuthenticationInfo(user, user.getPassword(),this.getClass().getName());//放入shiro.调用CredentialsMatcher检验密码    }    //授权    @Override    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principal) {        User user=(User) principal.fromRealm(this.getClass().getName()).iterator().next();//获取session中的用户        List<String> permissions=new ArrayList<>();        Set<Role> roles = user.getRoleList();        SimpleAuthorizationInfo info=new SimpleAuthorizationInfo();        List<String> listrole = new ArrayList<>();        if(roles.size()>0) {            for(Role role : roles) {                if(!listrole.contains(role.getRole())){                    listrole.add(role.getRole());                }                Set<Module> modules = role.getModules();                if(modules.size()>0) {                    for(Module module : modules) {                        permissions.add(module.getMname());                    }                }            }        }        info.addRoles(listrole);                       //将角色放入shiro中.    info.addStringPermissions(permissions);         //将权限放入shiro中.        return info;    }}//自定义密码比较器public class CredentialsMatcher extends SimpleCredentialsMatcher {    private  Logger logger = Logger.getLogger(CredentialsMatcher.class);    @Override    public boolean doCredentialsMatch(AuthenticationToken token, AuthenticationInfo info) {        UsernamePasswordToken utoken=(UsernamePasswordToken) token;        //所需加密的参数  即  用户输入的密码        String source = String.valueOf(utoken.getPassword());        //[盐] 一般为用户名 或 随机数        String salt = utoken.getUsername();        //加密次数        int hashIterations = 50;        SimpleHash sh = new SimpleHash("md5", source, salt, hashIterations);        String Strsh =sh.toHex();        //打印最终结果        logger.info("正确密码为:"+Strsh);        //获得数据库中的密码        String dbPassword= (String) getCredentials(info);        logger.info("数据库密码为:"+dbPassword);        //进行密码的比对        return this.equals(Strsh, dbPassword);    }}

4、登录控制器

    @RequestMapping("/loginUser")    public String loginUser(String username,String password,HttpSession session) {        UsernamePasswordToken usernamePasswordToken=new UsernamePasswordToken(username,password);        Subject subject = SecurityUtils.getSubject();        Map map=new HashMap();        try {            subject.login(usernamePasswordToken);   //完成登录            User user=(User) subject.getPrincipal();            session.setAttribute("user", user);            return "index";        } catch (IncorrectCredentialsException e) {            map.put("msg", "密码错误");        } catch (LockedAccountException e) {            map.put("msg", "登录失败,该用户已被冻结");        } catch (AuthenticationException e) {            map.put("msg", "该用户不存在");        } catch (Exception e) {            return "login";//返回登录页面        }        return map.toString();    }

5、thymeleaf页面权限控制

<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org"  xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">  //作为属性控制<button  type="button" shiro:authenticated="true" class="btn btn-outline btn-default"><i class="glyphicon glyphicon-plus" aria-hidden="true"></i></button>//作为标签<shiro:hasRole name="admin"><button type="button" class="btn btn-outline btn-default"><i class="glyphicon glyphicon-heart" aria-hidden="true"></i></button></shiro:hasRole>

6、标签说明

guest标签  <shiro:guest>  </shiro:guest>  用户没有身份验证时显示相应信息,即游客访问信息。user标签  <shiro:user>    </shiro:user>  用户已经身份验证/记住我登录后显示相应的信息。authenticated标签  <shiro:authenticated>    </shiro:authenticated>  用户已经身份验证通过,即Subject.login登录成功,不是记住我登录的。notAuthenticated标签  <shiro:notAuthenticated>    </shiro:notAuthenticated>  用户已经身份验证通过,即没有调用Subject.login进行登录,包括记住我自动登录的也属于未进行身份验证。principal标签  <shiro: principal/>    <shiro:principal property="username"/>  相当于((User)Subject.getPrincipals()).getUsername()。lacksPermission标签  <shiro:lacksPermission name="org:create">   </shiro:lacksPermission>  如果当前Subject没有权限将显示body体内容。hasRole标签  <shiro:hasRole name="admin">    </shiro:hasRole>  如果当前Subject有角色将显示body体内容。hasAnyRoles标签  <shiro:hasAnyRoles name="admin,user">     </shiro:hasAnyRoles>  如果当前Subject有任意一个角色(或的关系)将显示body体内容。lacksRole标签  <shiro:lacksRole name="abc">    </shiro:lacksRole>  如果当前Subject没有角色将显示body体内容。hasPermission标签  <shiro:hasPermission name="user:create">    </shiro:hasPermission>  如果当前Subject有权限将显示body体内容

“springboot+thymeleaf+shiro标签怎么用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

springboot+thymeleaf+shiro标签怎么用

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

springboot+thymeleaf+shiro标签怎么用

本篇内容介绍了“springboot+thymeleaf+shiro标签怎么用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1、pom中加入
2023-06-29

Springboot-Shiro该怎么使用

Springboot-Shiro该怎么使用,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。一、依据官网快速搭建Quickstart1.1 配置pom.xml依赖
2023-06-22

怎么解决springboot+shiro+thymeleaf页面级元素的权限控制问题

今天小编给大家分享一下怎么解决springboot+shiro+thymeleaf页面级元素的权限控制问题的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获
2023-06-29

怎么用springboot+thymeleaf+mybatis实现甘特图

这篇文章主要介绍“怎么用springboot+thymeleaf+mybatis实现甘特图”,在日常操作中,相信很多人在怎么用springboot+thymeleaf+mybatis实现甘特图问题上存在疑惑,小编查阅了各式资料,整理出简单好
2023-06-20

Node标签怎么用

这篇文章主要介绍了Node标签怎么用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Node标签怎么用文章都会有所收获,下面我们一起来看看吧。作用:获得栏目对象。实现类com.jspxcms.core.web.d
2023-06-26

怎么用Springboot快速整合shiro安全框架

这篇文章主要介绍“怎么用Springboot快速整合shiro安全框架”,在日常操作中,相信很多人在怎么用Springboot快速整合shiro安全框架问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么用Sp
2023-07-05

SpringBoot中怎么对Shiro进行整合

本篇内容介绍了“SpringBoot中怎么对Shiro进行整合”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!原生的整合创建项目创建一个 Sp
2023-06-08

FriendlinkTypeList标签怎么用

本文小编为大家详细介绍“FriendlinkTypeList标签怎么用”,内容详细,步骤清晰,细节处理妥当,希望这篇“FriendlinkTypeList标签怎么用”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。作
2023-06-26

Question标签怎么用

这篇文章主要讲解了“Question标签怎么用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Question标签怎么用”吧!作用:获取调查问卷对象。实现类com.jspxcms.ext.we
2023-06-26

Vote标签怎么用

本文小编为大家详细介绍“Vote标签怎么用”,内容详细,步骤清晰,细节处理妥当,希望这篇“Vote标签怎么用”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。作用:获取投票对象。实现类com.jspxcms.ext.
2023-06-26

SpecialCategoryList标签怎么用

本篇内容主要讲解“SpecialCategoryList标签怎么用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“SpecialCategoryList标签怎么用”吧!作用:获取专题类别列表。实现
2023-06-26

InfoPage标签怎么用

这篇文章主要介绍“InfoPage标签怎么用”,在日常操作中,相信很多人在InfoPage标签怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”InfoPage标签怎么用”的疑惑有所帮助!接下来,请跟着小编
2023-06-26

nofollow标签怎么用

小编给大家分享一下nofollow标签怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!nofollow标签的作用 nofollow标签添加方法nofollow
2023-06-09

git标签怎么用

这篇文章主要介绍了git标签怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。标签用于标记某一提交点,唯一绑定一个固定的commitId,相当于为这次提交记录指定一个别名,
2023-06-27

Query标签怎么用

这篇文章主要介绍了Query标签怎么用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Query标签怎么用文章都会有所收获,下面我们一起来看看吧。作用:执行sql查询。实现类com.jspxcms.core.we
2023-06-26

InfoPrev标签怎么用

这篇文章主要介绍“InfoPrev标签怎么用”,在日常操作中,相信很多人在InfoPrev标签怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”InfoPrev标签怎么用”的疑惑有所帮助!接下来,请跟着小编
2023-06-26

Info标签怎么用

这篇文章主要介绍了Info标签怎么用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Info标签怎么用文章都会有所收获,下面我们一起来看看吧。作用:获取指定的文档对象。实现类com.jspxcms.core.we
2023-06-26

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录