Kumar Chandrakant 87e2047eb5 Adding source files for the tutorial BAEL-2788 ()
* Adding source files for the tutorial BAEL-2788

* Made changes to the code for the review comments
2019-04-14 18:55:16 +02:00

14 lines
305 B
Java

package com.baeldung;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}