# @GetMapping("/api/board/{id}") public ResponseEntity getBoard(@PathVariable Long id, @AuthenticationPrincipal UserDetailsImpl userDetails) { System.out.println(userDetails.getNickname()); return ResponseEntity.ok().body(boardService.getBoard(id)); } userdetails가 null로 계속 들어온다. 추가 : skip path list 관련 이슈. skip path list 에 와일드카드를 썼기 때문이다. 유저정보를 넘기고 싶다면, GetMapping API를 하나 더 파주는 방법을 쓰던지, 유저가 액티브인지..