Skip to content

lnardai/springboot-kotlin-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Springboot used with Kotlin

Goal of this project is to try out different approaches to Spring boot with the new language features of Kotlin. I've never used Kotlin before, so I'm happy to hear any suggestions.

Unit tests

To run unit tests use gradle.

gradle clean test

###running application while development

To Hot deploying application start one process with continuous compilation (incubating phase):

gradle -t classes

Other process should start a Spring container

gradle bootRun

To deploy to appengine use:

#only works with Java8
./gradlew appengineDeploy