Skip to content

Latest commit

 

History

History
37 lines (18 loc) · 885 Bytes

README.adoc

File metadata and controls

37 lines (18 loc) · 885 Bytes

iui-seed-spring

iUI Seed Project using Spring Boot

This is a prototype "seed" project that uses iUI on the client and Spring Boot on the server.

Directory Structure

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

Running

./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.)

Building

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

To manually deploy to CloudBees

./gradlew deploy