首页 > 开发 > Java > 正文

springboot 在ftl页面上使用shiro标签的实例代码

2024-07-14 08:40:45
字体:
来源:转载
供稿:网友

1.首先第一步导入依赖

<dependency>   <groupId>com.github.theborakompanioni</groupId>   <artifactId>thymeleaf-extras-shiro</artifactId>   <version>1.2.1</version>  </dependency> 

2.在配置shiro权限的方法内加入

@Bean   public ShiroDialect shiroDialect() {     return new ShiroDialect();   } 

3.ftl页面中引入命名空间

<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> 

4.ftl页面中使用标签   

<@shiro.hasRole name="merchants">             <div>               我有这个角色哦!             </div> </@shiro.hasRole>  

总结

以上所述是小编给大家介绍的springboot 在ftl页面上使用shiro标签的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VeVb武林网网站的支持!


注:相关教程知识阅读请移步到JAVA教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表