2017-06-03 14:11:13 +01:00
|
|
|
package com.baeldung.springbootkotlin
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
|
|
|
|
|
2017-06-05 12:09:37 +02:00
|
|
|
@SpringBootApplication(scanBasePackages = arrayOf("com.baeldung.springbootkotlin"))
|
2017-06-03 14:11:13 +01:00
|
|
|
class KotlinDemoApplication
|
|
|
|
|
|
|
|
|
|
fun main(args: Array<String>) {
|
|
|
|
|
SpringApplication.run(KotlinDemoApplication::class.java, *args)
|
|
|
|
|
}
|