SpingBoot的Shiro整合thymeleaf,根据权限显示页面

目录

1、导入shiro-thymeleaf包

2、在ShiroConfig类里面配置ShiroDialect,用来整合shiro和thymeleaf

3、编写页面index.html 

4、退出实现

5、效果


没有登录页面就显示登录链接,登录之后根据用户的权限显示请求链接,以及退出链接

1、导入shiro-thymeleaf包

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第1张图片

2、在ShiroConfig类里面配置ShiroDialect,用来整合shiro和thymeleaf

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第2张图片

3、编写页面index.html 

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第3张图片

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第4张图片

4、退出实现

Shiro的默认登出时就会清除session信息

Shiro里面实现退出的操作有几种,这边是自定义controller路由实现

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第5张图片

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第6张图片

 (86条消息) Shiro的退出登录状态的方式_梁云亮的博客-CSDN博客_shiro登出

5、效果

SpingBoot的Shiro整合thymeleaf,根据权限显示页面_第7张图片

 

你可能感兴趣的:(java,开发语言)