https://github.com/kirillesau/spring-demo-application
An example application with spring boot
https://github.com/kirillesau/spring-demo-application
example-app java java17 spring-boot springboot3
Last synced: over 1 year ago
JSON representation
An example application with spring boot
- Host: GitHub
- URL: https://github.com/kirillesau/spring-demo-application
- Owner: kirillesau
- License: mit
- Created: 2023-03-13T13:01:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-07T05:59:41.000Z (about 2 years ago)
- Last Synced: 2025-01-19T19:57:33.477Z (over 1 year ago)
- Topics: example-app, java, java17, spring-boot, springboot3
- Language: Java
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# spring-demo-application
[](https://opensource.org/licenses/MIT)

[](https://github.com/kirillesau/spring-demo-application/actions/workflows/build%20with%20maven.yml)
[](https://github.com/kirillesau/spring-demo-application/actions/workflows/docker-image.yml)
An example application with spring boot. It includes topics such
as [Docker build](Dockerfile), [GitHub Actions](.github/workflows),
[JPA](src/main/java/de/kirill/springdemoapplication/book/Book.java), [RESTController](src/main/java/de/kirill/springdemoapplication/DemoController.java),
and
more.
## Prerequisite
The example has been created for learning purposes only.
## How to run
### Maven
```shell
./mvnw package spring-boot:run
```
### Docker
```shell
docker build -t kirillesau/spring-demo-application .
docker run -p 8081:8080 -d --name spring-demo kirillesau/spring-demo-application
```
## Implementation help
- [RestController](docs/implementation/RestController.md)
- [JPA](docs/implementation/JPA.md)
- [Actuator](docs/implementation/Actuator.md)
- [GitHub Actions](docs/implementation/GitHubActions.md)
- [Dockerfile](docs/implementation/Dockerfile.md)