문제:@PostMappingpublic ResponseEntity createPost( @AuthenticationPrincipal User user, @RequestBody CreatePostRequest request) { return ResponseEntity.ok( PostResponse.from( postService.create( user.getId(), request.getTitle(), request.getContent() ) ) );}게시글 생성 시 @AuthenticationPrincipal로 UserDetails를 가져와..