springboot thymeleaf和shiro标签整合

Posted 书山有路勤为径,学海无涯苦作舟(肖建锋)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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标签整合的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot笔记(五)模板引擎thymeleaf和freemarker

SpringBoot整合LayUI和Thymeleaf制作简单登录页面

springboot 中使用thymeleaf

SpringBoot整合LayUI和Thymeleaf制作简单登录页面

SpringBoot整合LayUI和Thymeleaf制作简单登录页面

springboot thymeleaf引入css和js必须添加th吗