Spring Boot: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean

前端 未结 27 1439
一整个雨季
一整个雨季 2020-11-28 03:55

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

27条回答
  •  日久生厌
    2020-11-28 04:38

    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);
        }
    }
    

提交回复
热议问题