Process finished with exit code 1 Spring Boot Intellij
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(); } }