게시판 댓글

개발로그

[Spring Boot JPA 커뮤니티] 댓글 작성, 네이버 감정분석 API 활용

기존 CRUD 게시판에 댓글 작성 시 감정 분석 API를 사용해 긍정, 중립, 부정으로 댓글 태그를 관리해 사용자가 원하는 댓글만 필터링하기 위해 댓글 작성 서비스에 네이버 API 적용 및 댓글 작성 및 조회를 구현했다. 댓글관리를 위한 Comment Entity 및 DTO 생성 @Entity @Getter @NoArgsConstructor public class Comment { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String content; @Enumerated(EnumType.STRING) private Emotion emotion; @ManyToOne @JoinColumn(name = "p..

비오베베
'게시판 댓글' 태그의 글 목록