https://github.com/ak-git/springbootfx
Simple example for Spring Boot and JavaFX application
https://github.com/ak-git/springbootfx
gradle java java24 javafx javafx-application spring spring-boot
Last synced: 3 months ago
JSON representation
Simple example for Spring Boot and JavaFX application
- Host: GitHub
- URL: https://github.com/ak-git/springbootfx
- Owner: ak-git
- Created: 2020-06-01T10:21:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-07-12T08:13:13.000Z (5 months ago)
- Last Synced: 2025-07-13T19:38:13.089Z (5 months ago)
- Topics: gradle, java, java24, javafx, javafx-application, spring, spring-boot
- Language: Java
- Homepage:
- Size: 464 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SpringBootFX
Simple example for Spring Boot and JavaFX application
Contains profiles: **default**, **nmi** and **aper**
Active profile **nmi** sets in *application.properties*
```properties
spring.profiles.active=default
```
You can switch active profile to **aper** at a startup using
```
-Dspring.profiles.active=aper
```
Output zip with single JAR appears after Gradle build task:
```
build/distributions/SpringBootFX-boot
```
## Run using Gradle
```shell
./gradlew run -t
```
## [Semantic versioning](https://zoltanaltfatter.com/2020/04/10/semantic-versioning-with-jgitver/)
### Plugin [fr.brouillard.oss.gradle.jgitver](https://github.com/jgitver/gradle-jgitver-plugin)
```shell
./gradlew version
```
```shell
./gradlew version | grep Version | awk '{ print $2 }'
```
### Update version and add git tag
```shell
git tag 2025.04
```
## Update dependencies
### Plugin [com.github.ben-manes.versions](https://github.com/ben-manes/gradle-versions-plugin)
```shell
./gradlew dependencyUpdates
```
## Check dependencies
### Plugin [dependency-analysis-gradle-plugin](https://github.com/autonomousapps/dependency-analysis-gradle-plugin)
```shell
./gradlew buildHealth
```