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

如何使用Thymeleaf配置SpringBoot并使用sec:authentication标记,第1张

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

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

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

<bean id="templateEngine" > ...  <property name="additionalDialects">    <set>      <bean />    </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。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5621756.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存