srayhunter
06/12/2017, 6:43 PM@SpringBootApplication
class WebApplication
fun main(args: Array<String>) {
SpringApplication.run(WebApplication::class.java, *args)
}
and run into the following error: Error: Main method not found in class com.example.web.WebApplication, please define the main method as:
public static void main(String[] args)
any insight. I have tried the older method and it works.