springboot thymeleaf和shiro标签整合

这里用的是 thymeleaf 2.x版本的

添加依赖

    com.github.theborakompanioni
    thymeleaf-extras-shiro
    1.2.1 

 

在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

你可能感兴趣的:(java)