Skip to content

hae02y/TodoApplication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TodoApp

CRUD기능 구현

Table

todos type
id long
title varchar
todoOrder int
completed boolean
ex)
id title todoOrder completed
1 운동하기 1 false

Error

1. H2 DB error

@Entity(name = "order") //사용시에 에러가 발생 > h2는 order가 예약어

@Entity(name = "`order`") // 백틱 사용하면 정상동작

2. Test error

Test site : https://todobackend.com/client/index.html 이용

Site상에서 테스트를 정상통과하기 위해서는 responseurl변수가 필요하다.

✔ each new todo has a url

url을 ResponseDto값으로 전달

this.url = "http://localhost:8080/" + this.id;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages