1. 程式人生 > >SpringBoot專案報錯the import org.springframework.web.*cannot be resolved..

SpringBoot專案報錯the import org.springframework.web.*cannot be resolved..

可能原因是沒有在pom.xml中新增web依賴

新增:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
</dependency>