동시성 제어

·Trouble Shooting
문제 상황게시판의 좋아요 기능 구현을 하고 있었습니다. 게시판 좋아요 기능의 로직은 다음과 같습니다.@Transactional public LikeResponseDto toggleLike(UUID postId, Long userId) { Post post = postService.getPostById(postId); Like like = likeRepository.findFirstByPostAndUserId(post, userId) .orElse(new Like(post, userId)); // 좋아요 상태 토글 like.toggleLikeStatus(); likeRepository.save(like); ..
지누박
'동시성 제어' 태그의 글 목록