Browse Source

Create README.md

David Ginzberg 7 years ago
parent
commit
a457fc0bf6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      README.md

+ 1
- 1
README.md View File

@@ -4,7 +4,7 @@ This repository provides a starter project for a CRUD application using Spring B
4 4
 
5 5
 ## Exercise
6 6
 
7
-Using this project as a starter, create a Person class as an entity to persist to H2 with an autogenerated id. Provide a RestController for Person with endpoints for HTTP GET, PUT, POST, and DELETE operations mapping to their appropriate CRUD behaviors. endpoints should be at `/person` and `/person/{id}` as appropriate. See the snippet below for setting Person IDs:
7
+Using this project as a starter, create a Person class as an entity to persist to H2 with an autogenerated id. Provide a RestController for Person with endpoints for HTTP GET, PUT, POST, and DELETE operations mapping to their appropriate CRUD behaviors. Endpoints should be at `/person` and `/person/{id}` as appropriate and provide the correct HTTP status codes in the response. See the snippet below for setting Person IDs:
8 8
 
9 9
 ```Java
10 10
 @Entity