게시판 단건 조회시 조회수 증가하는 기능 구현 게시판 entity에 아래와 같은 코드를 삽입@Column(name = "views")private int viewCount = 0; // 조회수 public void increaseViewCount(){this.viewCount ++; //조회수 증가 메서드} 게시판 단건 조회에 조회될때마다 increasViewCount가 작동하게 코드 작성변경 전public PostResponseDto getPostById(Long id) { return new PostResponseDto(postRepository.findById(id).orElseThrow());} 변경 후@Transactionalpublic PostResponseDto getPostByI..