일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 겜스고
- Java
- 코드 스테이츠 백엔드 교육과정
- 백내장 금감원
- 백내장 다초점렌즈 삽입술
- Gamsgo
- Code States 백엔드 합격 후기
- 해시
- 코테 합격후기
- 금감원
- 코드스테이츠 백엔드 교육과정
- codestates 국비지원 1기 합격 후기
- CodeState 후기
- 코드스테이츠 합격 후기
- Spring
- 백준 알고리즘
- 금감원 백내장 민원
- 코드스테이츠 부트캠프 합격 후기
- 보험금 지급거절
- 에이치엘비
- 코드스테이츠 백엔드 후기
- HLB
- 자바
- 코드스테이츠 백엔드 부트캠프 합격
- 메서드
- 백내장
- 금융감독원 민원신청
- 금융감독원
- 코드스테이츠 합격
- 코드스테이츠 부트캠프
Archives
- Today
- Total
개발하는 동그리
[Main Project] 게시글 좋아요 구현 본문
반응형
좋아요 설정에 필요한 클래스
- LikesController
- LikesEntity
- LikesService
- LikesRepository
LikesController Class
@RestController
@RequestMapping("/v1")
@Slf4j
@RequiredArgsConstructor
public class LikesController {
private final LikesService likeService;
@PostMapping("/likes/{posts-id}")
public ResponseEntity addLike(@PathVariable("posts-id") Long postsId
, @AuthenticationPrincipal PrincipalDetails principal) {
log.info("===================좋아요 클릭=======================");
boolean result = false;
if (principal != null) {
result = likeService.booleanLike(principal.getUsers().getId(), postsId);
}
return result ?
new ResponseEntity<>("좋아요 추가", HttpStatus.OK) :
new ResponseEntity<>("좋아요 삭제", HttpStatus.BAD_REQUEST);
}
}
LikesEntity Class
@Entity
@NoArgsConstructor
@AllArgsConstructor
@Getter
public class Likes {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private Long usersId;
private Long postsId;
public Likes(Long usersId, Long postsId) {
this.usersId = usersId;
this.postsId = postsId;
}
}
LikesService Class
@Transactional
@RequiredArgsConstructor
@Service
public class LikesService {
private final LikesRepository likeRepository;
private final PostsService postsService;
public boolean booleanLike(Long usersId, Long postsId) {
Posts posts = postsService.findById(postsId);
if (isNotAlreadyLike(usersId, postsId)) {
posts.setLikesCount(posts.getLikesCount() + 1);
likeRepository.save(new Likes(usersId, postsId));
postsService.savedLikesCount(posts);
return true;
} else {
posts.setLikesCount(posts.getLikesCount() - 1);
likeRepository.delete(findLikes(usersId, postsId));
postsService.savedLikesCount(posts);
}
return false;
}
@Transactional(readOnly = true)
public boolean isNotAlreadyLike(Long usersId, Long postsId) {
return likeRepository.findByUsersIdAndPostsId(usersId, postsId).isEmpty();
}
@Transactional(readOnly = true)
public boolean isAlreadyLike(long likesId) {
return likeRepository.findById(likesId).isPresent();
}
@Transactional(readOnly = true)
public Likes findLikes(Long usersId, Long postsId) {
return likeRepository.findByUsersIdAndPostsId(usersId, postsId).orElse(null);
}
}
LikesRepository
public interface LikesRepository extends JpaRepository<Likes, Long> {
Optional<Likes> findByUsersIdAndPostsId(Long usersId, Long PostsId);
}
반응형
'스테이츠 코드(백엔드) > Main Project' 카테고리의 다른 글
[Main Project] 내가 적용한 기술 설명 (4) | 2022.10.07 |
---|---|
[Main Project] Nginx Load Balancer 설정 (4) | 2022.10.03 |
[Main Project] Spring Security + JWT 설정 (0) | 2022.09.29 |
[Main Project] AWS S3 사진 업로드 설정 (2) | 2022.09.29 |
[Main Project] @Convert : booleanToString (2) | 2022.09.29 |