We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notification์ด ์ ์ฉ๋๋ Service๊ณ์ธต ์ ๋ฐ
@Transactional @Override public void createComment(CommentDTO commentDTO) { modelMapper.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT); Comment comment = modelMapper.map(commentDTO, Comment.class); commentRepository.save(comment); System.out.println("[comment] = " + comment); // ์ ๋๊ธ ๋ฑ๋ก ์ ์๋ฆผ PostDetailVO post = postService.viewPostById(comment.getPostId()); MemberDTO postAuthor = memberService.getMemberDetailsByMemberId(post.getMemberId()); MemberDTO commentAuthor = memberService.getMemberDetailsByMemberId(comment.getMemberId()); notificationService.send(postAuthor.getMemberId(), commentAuthor.getNickname() + "๋์ด ๋ด ๊ธ์ ๋๊ธ์ ๋ฌ์์ต๋๋ค: " + comment.getContent()); }
์์ ๊ฐ์ด ์๋ฆผ ์ด๋ฒคํธ๊ฐ ๋ฐ์ํ๋ ํน์ ๋ฉ์๋ ๋ด์์ ์๋ฆผ์ ๋ณด๋ด๋ ๊ณผ์ ์ ๊ฐ๋ ์ฑ์ด ๋จ์ด์ง๊ณ ์ ์ง๋ณด์์ ์ทจ์ฝํฉ๋๋ค. ๋ํ, Comment-Reply์ ๊ฐ์ด ์๋ก ๋ฐ์ ํ๊ฒ ์ฐ๊ด๋ ๋ถ๋ถ์ ์ํ์ฐธ์กฐ ๋ฌธ์ ๊ฐ ๋ฐ์ํ ์ ์์ต๋๋ค. ์ด๋ฌํ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๊ธฐ ์ํด AOP(Aspect-Oriented Programming)๋ฅผ ํ์ฉํ์ฌ ๊ณตํต์ผ๋ก ์ฌ์ฉ๋๋ ๋ถ๋ถ์ ๊ฐ๊ฐ ๊ตฌํํ๋ ๋์ Aspect ๋จ์๋ก ๋ฌถ์ด ๊ด๋ฆฌํ๊ณ ํธ์ถํ ์ ์์ต๋๋ค.
๊ณต๋ถ์ค
Aspect๋ฅผ ๋ชจ๋ํํ๊ณ ๊ณตํต ๊ด๋ฆฌํ ์ ์์ต๋๋ค. ์ด๋ฅผ ํตํด ์ฝ๋์ ๊ฐ๋ ์ฑ๊ณผ ํธ์์ฑ์ ํฅ์์ํฌ ์ ์์ต๋๋ค.
#34
The text was updated successfully, but these errors were encountered:
orlzlL
No branches or pull requests
๋ฆฌํฉํ ๋ง ๋์ (Refactoring Target)
Notification์ด ์ ์ฉ๋๋ Service๊ณ์ธต ์ ๋ฐ
๋ฆฌํฉํ ๋ง ์ด์ (Reason for Refactoring)
์์ ๊ฐ์ด ์๋ฆผ ์ด๋ฒคํธ๊ฐ ๋ฐ์ํ๋ ํน์ ๋ฉ์๋ ๋ด์์ ์๋ฆผ์ ๋ณด๋ด๋ ๊ณผ์ ์ ๊ฐ๋ ์ฑ์ด ๋จ์ด์ง๊ณ ์ ์ง๋ณด์์ ์ทจ์ฝํฉ๋๋ค. ๋ํ, Comment-Reply์ ๊ฐ์ด ์๋ก ๋ฐ์ ํ๊ฒ ์ฐ๊ด๋ ๋ถ๋ถ์ ์ํ์ฐธ์กฐ ๋ฌธ์ ๊ฐ ๋ฐ์ํ ์ ์์ต๋๋ค. ์ด๋ฌํ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๊ธฐ ์ํด AOP(Aspect-Oriented Programming)๋ฅผ ํ์ฉํ์ฌ ๊ณตํต์ผ๋ก ์ฌ์ฉ๋๋ ๋ถ๋ถ์ ๊ฐ๊ฐ ๊ตฌํํ๋ ๋์ Aspect ๋จ์๋ก ๋ฌถ์ด ๊ด๋ฆฌํ๊ณ ํธ์ถํ ์ ์์ต๋๋ค.
๋ณ๊ฒฝ ๋ด์ฉ (Changes Made)
๊ณต๋ถ์ค
๊ฐ์ ๋ ์ (Improvements)
Aspect๋ฅผ ๋ชจ๋ํํ๊ณ ๊ณตํต ๊ด๋ฆฌํ ์ ์์ต๋๋ค. ์ด๋ฅผ ํตํด ์ฝ๋์ ๊ฐ๋ ์ฑ๊ณผ ํธ์์ฑ์ ํฅ์์ํฌ ์ ์์ต๋๋ค.
์ํฅ (Impact)
๊ด๋ จ ์ด์ (Related Issues)
#34
์ฒดํฌ๋ฆฌ์คํธ (Checklist)
The text was updated successfully, but these errors were encountered: