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>

 

posted @ 2017-03-24 21:31 Xiao.jf 阅读( ...) 评论( ...) 编辑 收藏
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐