(자바)게시판 댓글기능 구현
public class CommentService { @Autowired private CommentRepository commentRepository; public void addComment(Comment comment) { // 댓글 작성일시 설정 comment.setCreated(new Date()); // 댓글 저장 commentRepository.save(comment); } } CommentService 클래스에서 addComment 메소드를 구현하였습니다. 이 메소드는 Comment 객체를 인자로 받아 해당 댓글을 저장합니다. 댓글 작성일시는 comment.setCreated(new Date())으로 현재 시간으로 설정하였습니다. 또한, 댓글 저장은 commentRepository.save..
스터디(코딩, 잡지식 등)
2023. 3. 9. 17:24