gpt4 book ai didi

java - 使用#authentication 实用程序的 Spring Boot 和 Thymeleaf

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:44:34 24 4
gpt4 key购买 nike

使用 Spring Boot、spring security starter 和 thymeleaf,我无法在登录后访问#authentication 实用程序(更准确地说,它是 null)。我没有做任何特殊配置(假设初学者会为我做)并且我没有在我的模板中包含 sec: 命名空间(再次假设我不需要它 - 我到目前为止看到的所有示例都不需要也不需要)。我想这样调用:{#authentication.expression('isAuthenticated()')}

作为引用,这是在身份验证后调用的 Controller :

import java.security.Principal;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/site-admin")
public class VZSiteAdminController {

@RequestMapping(method=RequestMethod.GET)
public String mainScreen(Principal principal){

return "site-admin";

}
}

最佳答案

如果您想从主体对象访问属性,您应该这样做:

<div th:text="${#authentication.principal.something}">
The value of the "name" property of the authentication object should appear here.
</div>

这篇文章对我真的很有帮助,因为我添加了一个存储在主体对象中的用户图像:

<img th:if="${#authentication.principal.image}"
class="img-circle" th:src="${#authentication.principal.image}"
width="100" height="100" alt="place-holder" />

关于java - 使用#authentication 实用程序的 Spring Boot 和 Thymeleaf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27957906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com