LINUX.ORG.RU

История изменений

Исправление vtVitus, (текущая версия) :

String userName =SecurityContextHolder.getContext().getAuthentication().getName()

и вытягивай сколько угодно. аля

@GetMapping("/profile")
   public String profile(Model model) {
      SecurityContext context = SecurityContextHolder.getContext();      
      model.addAttribute("userName", context.getAuthentication().getName());
...
      return "profile";
   }

Исходная версия vtVitus, :

String userName =SecurityContextHolder.getContext().getAuthentication().getName()

и вытягивай сколько угодно.