blob: acacb861d1cd87bf5a137cda152afc2ad1e2eb49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Based on [amigoscode Spring Boot
tutorial](https://www.youtube.com/watch?v=9SGDpanrc8U)
"Minimal" example for a Spring Boot RESTful API.
`student` is a package that tries to implement a RESTful API with minimal
boilerplate code. It uses Spring Data JPA and lombok.
Dependencies are managed by Maven.
It also depends on a Postgres DB, as specified in the `application.properties`
file. An important property there is `spring.jpa.hibernate.ddl-auto`.
Available values include `none` (production), `update` (develop), `create-drop`
(testing).
2022-06-23
|