Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ReactDOM
- cardview
- function scope
- .kt
- Anro Coroutines
- java
- RecyclerView
- vim
- Git
- component
- intent
- ConstraintLayout
- layout
- Anko SQLite
- Retrofit2
- props
- RelativeLayout
- react
- permission
- Eclipse
- LinearLayout
- 안드로이드
- javascript
- Kotlin
- ViewGroup
- linux
- android
- block scope
- view
- http
Archives
- Today
- Total
이것저것 다 개발
[Spring Boot] org.springframework.orm.jpa.JpaSystemException 본문
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 를 추가해주어 자동증가를 명시함.
'Java' 카테고리의 다른 글
[Java] JVM (Java Virtual Machine) Runtime Data Area (0) | 2017.12.08 |
---|---|
[Java] OOP (Object Oriented Programming) (0) | 2017.12.04 |
[SpringBoot] STS를 이용한 Spring Boot Project 생성하기 (0) | 2017.11.29 |
Comments