This is a prototype "seed" project that uses iUI on the client and Spring Boot on the server.
As follows.
-
src/main/webapp - directory contains static HTML and resources
-
src/main/java - directory contains Java source code for Configuration, Controllers, etc.
-
build.gradle - Gradle build file
./gradlew build ; java -jar path/file.war
- NOTE
-
It would be nice to have single Gradle command to build and run. (It looks like this will be in the M7 release of Spring Boot.)
To create an "exectable WAR" in the build/libs directory:
./gradlew build
To run that app:
java -jar build/libs/iuiseed-0.1.0.war