springboot 在ftl页面上使用shiro标签的实例代码
程序员文章站
2023-12-16 18:04:46
1.首先第一步导入依赖
com.github.theborakompanioni<...
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标签的实例代码,希望对大家有所帮助