码迷,mamicode.com
首页 > 编程语言 > 详细

springboot thymeleaf和shiro标签整合

时间:2017-03-24 21:44:33      阅读:2125      评论:0      收藏:0      [点我收藏+]

标签:org   depend   extras   html   end   cat   code   conf   lan   

这里用的是 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标签整合

标签:org   depend   extras   html   end   cat   code   conf   lan   

原文地址:http://www.cnblogs.com/xiaojf/p/6613537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!