首页 > 代码库 > springboot thymeleaf和shiro标签整合
springboot thymeleaf和shiro标签整合
这里用的是 thymeleaf 2.x版本的
添加依赖
<dependency>
<groupId>com.github.theborakompanioni</groupId> <artifactId>thymeleaf-extras-shiro</artifactId> <version>
1.2.1</version>
</dependency>
在shiro的configuration中配置
@Bean public ShiroDialect shiroDialect() { return new ShiroDialect(); }
在html中加入xmlns
<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
例子
<span shiro:authenticated="true" > <span>欢迎您:<span th:text="${userInfo.realName}"></span></span> </span>
springboot thymeleaf和shiro标签整合
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。