springboot thymeleaf和shiro标签整合
这里用的是 thymeleaf 2.x版本的添加依赖com.github.theborakompanionithymeleaf-extras-shiro1.2.1 在shiro的configuration中配置@Beanpublic ShiroDialect shiroDialect() {
·
这里用的是 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>
转载:https://www.cnblogs.com/xiaojf/p/6613537.html
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献3条内容
所有评论(0)