小编典典

如何使用Thymeleaf配置SpringBoot并使用sec:authentication标记

spring-boot

我在我的应用程序中使用spring-boot 1.2.5 + thymeleaf + spring安全性。

经过研究后,我需要在网站上显示用户名,我应该使用类似以下的代码:

<div sec:authentication="name">The value of the "name" property of
        the authentication object should appear here.</div>

但是,我没有让Thymeleaf解析该标签。请我需要一些帮助:(


阅读 715

收藏
2020-05-30

共1个答案

小编典典

您需要在项目中添加Spring Security
3集成模块。这些模块是Thymeleaf的方言,等同于Spring安全标签lib。这些是百里香额外的模块,不是百里香核心的一部分。

在您的模板引擎中,只需添加集成模块方言即可。

<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
 ...
  <property name="additionalDialects">
    <set>
      <bean class="org.thymeleaf.extras.springsecurity4.dialect.SpringSecurityDialect"/>
    </set>
  </property>
  ...
</bean>

添加模块后,可以使用以下代码:

<div sec:authentication="name">The value of the "name" property of
    the authentication object should appear here.</div>

Thymeleaf等效模块可在此处找到。另外,请参考他们的这个逐步教程

更新:

如果您使用的是Spring Boot,则只需在pom.xml中添加依赖项或在项目中添加jar。

2020-05-30