Skip to content

Instantly share code, notes, and snippets.

@trishagee
Created October 21, 2019 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trishagee/8ab0f0373dc3558cd69b558546df4857 to your computer and use it in GitHub Desktop.
Save trishagee/8ab0f0373dc3558cd69b558546df4857 to your computer and use it in GitHub Desktop.
Default Spring Boot Kotlin application
package com.mechanitis.demo.stockservice
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
@SpringBootApplication
class StockServiceApplication
fun main(args: Array<String>) {
runApplication<StockServiceApplication>(*args)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment