이것저것 다 개발

[Spring Boot] org.springframework.orm.jpa.JpaSystemException 본문

Java

[Spring Boot] org.springframework.orm.jpa.JpaSystemException

용용개발 2017. 11. 28. 10:23

org.springframework.orm.jpa.JpaSystemException

ids for this class must be manually assigned before calling save():

Spring Boot + MySQL 사용중 에러가 발생하였습니다..


CREATE TABLE TEST (

no INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,

... );

Mysql Test Table 생성


@Id

@GeneratedValue

private Integer no;

...


@Id 테이블의 Primary Key 라는것을 나타내고

@GeneratedValue 를 추가해주어 자동증가를 명시함.

Comments