Jersey的ContainerRequestContext的Spring等价物是什么? 我试图从ContainerRequestContext中获取SecurityContext(.getSecurityContext())。
spring-mvc有类似的东西吗?
答案 0 :(得分:0)
你可以使用注释来获取/加载大多数你将使用ContainerRequestContext的东西。例如cookies
@RequestMapping("/hello")
public String hello(@CookieValue("font-style") String fontStyle) {
// ...
}
对于SecurityContext,请查看以下内容
https://www.mkyong.com/spring-security/get-current-logged-in-username-in-spring-security/
答案 1 :(得分:0)
您可以使用interface HttpServletRequest