.❗문제 상황
board라는 엔티티에 id, title, content라는 컬럼을 설정해 주었다.
작성 버튼을 누르면 DB에 해당 내용들이 저장되어야 하는데 오류가 발생했다.
❗해결 방법
이 오류를 해결하기 위해 not null인 컬럼에 @Column(nullable = false) 어노테이션을 붙여주었다
또한 auto_increment는 자료형이 int나 float일 때만 가능하므로 id의 자료형을 INTEGER에서 int로 변경해주었다
728x90
반응형
'🔻Back-End > Spring' 카테고리의 다른 글
[Spring] Query String과 Path Variable (0) | 2022.11.03 |
---|---|
[Spring error]Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception (0) | 2022.10.29 |
[Spring] 스프링 프로젝트를 DB와 연결하기 (0) | 2022.10.29 |
[Spring] @RestController 적용하기 (0) | 2022.10.27 |
[Spring] REST API (0) | 2022.10.27 |