Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.04 KB

README.md

File metadata and controls

53 lines (31 loc) · 1.04 KB

Spring Boot 1.x in Scala

Build Status

Run Spring Boot 1.5 from Scala and sbt.

Starting

Open sbt from a console:

$ sbt

From the sbt prompt, start the application with sbt-revolver:

> re-start

To stop to the application:

> re-stop

Testing

Run the test suite from the sbt prompt:

> test

Triggered execution

It is possible for sbt to poll your sources and automatically run the build again for you.

Here is how to run the app, and have it be restarted on every source file change:

> ~re-start

After exiting, be sure to still stop the forked application process with:

> re-stop

To run the test suite whenever the sources or a test are changed:

> ~test