January 2019
Intermediate to advanced
392 pages
10h 11m
English
Under src/main/kotlin/{packageName}, create an application class named SpringBootKotlinApplication.kt:
@SpringBootApplicationclass SpringBootKotlinApplicationfun main(args: Array<String>) { runApplication<SpringBootKotlinApplication>(*args)}
@SpringBootApplication is utilized to empower the following three features:
The main() function utilizes SpringBoot's SpringApplication.run() method to dispatch an application. This web application is 100% unadulterated Kotlin and there's no need to arrange any pipes or foundations here.
Similarly, there's ...
Read now
Unlock full access