java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > springboot shiro标签

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

作者:微笑彡三色

这篇文章主要介绍了springboot 在ftl页面上使用shiro标签的实例代码,通过文字说明结合实例的形式给大家介绍的非常详细,需要的朋友参考下吧

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标签的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

您可能感兴趣的文章:
阅读全文