There is a bug in the main method of Application class
public static void main(String[] args) { SpringApplication.run(Application.class); }
should be
public static void main(String[] args) { SpringApplication.run(Application.class, args); }
Otherwise the command line arguments are not passed to the lookup method.
There is a bug in the main method of Application class
public static void main(String[] args) { SpringApplication.run(Application.class); }
should bepublic static void main(String[] args) { SpringApplication.run(Application.class, args); }
Otherwise the command line arguments are not passed to the lookup method.