@3/15/2023
조회수 증가 기능
•
나중에 유저 본인 작성글은 조회수가 올라가지 않도록 로직 변경 예정
•
컨트롤러
@GetMapping("/posts/{postId}")
public String viewPost(
@PathVariable Long postId,
@RequestParam(required = false) Long currentPage,
Model model
) {
Post foundPost = postService.findPostById(postId);
postService.addView(foundPost);
...
}
JavaScript
복사
•
서비스
@Transactional
public void addView(Post post) {
// TODO - 로그인 구현 후 본인 게시글은 조회수가 올라가지 않도록 변경
post.setView(post.getView() + 1);
}
JavaScript
복사