David Ginzberg 9b74aa2561 Create README.md 7 lat temu
.mvn/wrapper first commit 7 lat temu
src first commit 7 lat temu
.gitignore first commit 7 lat temu
README.md Create README.md 7 lat temu
mvnw first commit 7 lat temu
mvnw.cmd first commit 7 lat temu
pom.xml first commit 7 lat temu

README.md

CRUDApplication

This repository provides a starter project for a CRUD application using Spring Boot, RestControllers, and H2 for an in memory database.

Exercise

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:

@Entity
public class Person {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Integer id;
    ...
}