我在Spring Boot应用程序中遇到问题。在我的应用程序中,我正在运行一个管理控制台页面,该页面仅以安全性登录。没有jwt令牌或其他东西。 因此,当我按下控制器时,我会在SecurityContext中重新放置。 但是当我的预定方法运行并调用时:
SecurityContext securityContext = SecurityContextHolder.getContext();
Authentication authentication = securityContext.getAuthentication();
我得到的全部为空。我不知道如何解决这个问题。有人可以帮忙吗? 如果您还需要其他内容,请发表评论。