1. 程式人生 > >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>
轉載:https://www.cnblogs.com/xiaojf/p/6613537.html