Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/educhastenier/spring-boot-mvc-kotlin-tutorial
Personal tutorial materials to learn Spring boot + Spring MVC + Kotlin + Spring Dev Tools
https://github.com/educhastenier/spring-boot-mvc-kotlin-tutorial
kotlin spring-boot spring-mvc
Last synced: 25 days ago
JSON representation
Personal tutorial materials to learn Spring boot + Spring MVC + Kotlin + Spring Dev Tools
- Host: GitHub
- URL: https://github.com/educhastenier/spring-boot-mvc-kotlin-tutorial
- Owner: educhastenier
- License: apache-2.0
- Created: 2018-04-24T22:18:14.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T14:08:10.000Z (almost 7 years ago)
- Last Synced: 2024-11-16T12:35:29.547Z (3 months ago)
- Topics: kotlin, spring-boot, spring-mvc
- Language: Kotlin
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-boot-mvc-kotlin-tutorial
## How to build
`./gradlew build`Then you can **run** the application with `java -jar build/libs/spring-boot-mvc-kotlin-tutorial-0.1.0-SNAPSHOT.jar`
Specify `--server.port=9000` on the command line to use port `9000` instead of `8080` (default value)
## How to run directly from Gradle
`./gradlew bootRun` (tomcat tries to start on port 8080)`./gradlew bootRun -Dserver.port=9000` to use port 9000 instead