https://github.com/tdiprima/spring-boot-testbed
Testing ground for exploring Spring Boot's features and capabilities
https://github.com/tdiprima/spring-boot-testbed
java jpackage maven spring-boot
Last synced: 8 months ago
JSON representation
Testing ground for exploring Spring Boot's features and capabilities
- Host: GitHub
- URL: https://github.com/tdiprima/spring-boot-testbed
- Owner: tdiprima
- License: mit
- Created: 2024-05-03T14:18:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T14:17:13.000Z (8 months ago)
- Last Synced: 2025-02-03T15:27:31.488Z (8 months ago)
- Topics: java, jpackage, maven, spring-boot
- Language: Java
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spring-boot-testbed
1. Run DemoApplication.java
2. Go to http://localhost:8080/Or:
## Build jar
```sh
mvn clean package
```## Run jar
```sh
java -jar target/demo-1.0.0.jar
```## Build Mac app
```sh
mvn jpackage:jpackage@mac
# or
jpackage \
--name HelloSpringBoot \
--dest ./dist \
--verbose \
--type dmg \
--app-version 1.0.0 \
--description "Hello Spring Boot" \
--input ./target \
--install-dir /Applications \
--vendor "Testing" \
--main-jar demo-1.0.0.jar \
--java-options -Dfile.encoding=UTF-8
```---
This project may include third-party open-source code, subject to its original licenses.
If there is a licensing concern, please open an issue.