An open API service indexing awesome lists of open source software.

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

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.