Try to get stack trace by putting “try-catch” block, arround “run” method calling, in your main method, and print stack trace within “catch” as follows.
public static void main(String[] args) {
try {
SpringApplication.run(MyApplication.class, args);
} catch (Exception e) {
e.printStackTrace();
}
}