Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 742 Bytes

README.md

File metadata and controls

37 lines (19 loc) · 742 Bytes

Scala plus Spring

Instal

install and config sbt

Config

To run the webapp you use sbt, although it can be a memory hog so you might want to add this to your environment or profile ~/.sbtconfig

export SBT_OPTS=-XX:MaxPermSize=2048M

Run

Then start container within sbt shell

> runMain com.github.jiahut.demo.Launcher

Package

To build a deployable file (WAR - Web ARchive) you can run sbt and run the following command:

> package

IntelliJ

There is a plugin which will build IntelliJ project files, run sbt and run the following command

> gen-idea

eclipse

There is a plugin which will build eclipse project files, run following conmand within sbt shell

> eclipse

enjoy.