I am totally new to Spring and started to do the official guides from this site: https://spring.io/guides
I\'d like to do this guide: https://spring.io/guides/gs/sch
I have stuck with same problem. As I didn't define Main.class and the following annotations in Spring-Boot using Maven:
@SpringBootApplication public class Main { public static void main(String args[]){ SpringApplication.run(Main.class, args); } }