Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonatan-ivanov/spring5-sleuth
https://github.com/jonatan-ivanov/spring5-sleuth
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jonatan-ivanov/spring5-sleuth
- Owner: jonatan-ivanov
- License: mit
- Created: 2020-04-12T06:33:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T07:52:03.000Z (almost 5 years ago)
- Last Synced: 2025-01-06T14:56:38.141Z (12 days ago)
- Language: Java
- Size: 70.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spring 5, Embedded Tomcat 8, and Gradle: a Quick Tutorial
This repository accompanies the [Spring 5, Embedded Tomcat 8, and Gradle: a Quick Tutorial](https://auth0.com/blog/spring-5-embedded-tomcat-8-gradle-tutorial)
article on Auth0's blog. Head there to learn how to embed Tomcat 8 on a Spring 5 project managed by Gradle.## Useful Commands
```bash
# create uber jar
./gradlew clean shadowJar# run uber jar
java -jar build/libs/embedded-spring-5-1.0-SNAPSHOT-all.jar
```