https://github.com/julianhm9612/spring-boot-logs-api
A simple example of log handling in spring boot :books:
https://github.com/julianhm9612/spring-boot-logs-api
java jib-maven-plugin logs logstash-lo logstash-logback-encoder postgresql spring-boot
Last synced: about 2 months ago
JSON representation
A simple example of log handling in spring boot :books:
- Host: GitHub
- URL: https://github.com/julianhm9612/spring-boot-logs-api
- Owner: Julianhm9612
- Created: 2022-09-29T19:52:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-31T21:06:48.000Z (over 2 years ago)
- Last Synced: 2025-02-12T02:56:12.791Z (3 months ago)
- Topics: java, jib-maven-plugin, logs, logstash-lo, logstash-logback-encoder, postgresql, spring-boot
- Language: Java
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spring-boot-logs-api
A simple example of log handling in spring boot 📚
## Spring initializr
Basic configuration
## Instal dependencies
mvn install## Install postgis
https://postgis.net/install/## Run the project
mvn spring-boot:run## Run with docker
1. Compile and create docker imagemvn compile jib:dockerBuild
2. Docker compose
docker compose up
3. Or run the container
docker run -it --rm -p 8036:8036 spring-boot-logs-api:1.0.0
## Create a docker image for kubernetes
1. docker run -it --rm wondercode/composerize-plus:1.2.1 docker run -it --rm -p 8036:8036 spring-boot-logs-api:1.0.0 > docker-compose.yml2. kompose convert
## Export docker image in a tar
docker save spring-boot-logs-api:1.0.0 > spring-boot-logs-api:1.0.0.tar## More info about
### Logging
https://www.baeldung.com/spring-boot-logging### Log Rolling File
https://www.baeldung.com/java-logging-rolling-file-appenders### JIB
https://www.baeldung.com/jib-dockerizing# Autor
https://github.com/Julianhm9612