Cascade

· 에러일기
문제점org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException 문제 발생 코드 @DeleteMapping("/{commentNumber}/deleteComment") public ApiResponse deleteComment(@PathVariable int commentNumber) { commentService.deleteComment(commentNumber); return ApiResponse.of(HttpStatus.NO_CONTENT, null); } 무결성 제약 조건 위배 발생했다는 에러가 떴다.댓글 엔티티에 boardNumber 즉 fk로 엮여 있다.댓글을 삭제하려고 하니 부모인 board 엔티티에서 자식인 comment가 없어지려고 하자. 에러가..
솜사탕코튼
'Cascade' 태그의 글 목록