David Ginzberg 71f65702cd Update notes on using console 7 years ago
.mvn/wrapper first commit 7 years ago
src first commit 7 years ago
.gitignore first commit 7 years ago
README.md Update notes on using console 7 years ago
mvnw first commit 7 years ago
mvnw.cmd first commit 7 years ago
pom.xml Change application name in pom 7 years ago

README.md

CRUDApplication

This repository provides a starter project for a CRUD application using Spring Boot, RestControllers, and H2 for an in memory database. When using the H2 console in the browser (eg: localhost:8080/console) be sure to set the JDBC URL to match the url defined in application-h2.properties. The default is jdbc:h2:mem:testdb.

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;
    ...
}