
尝试1: 并没有解决问题
然后发现maven的依赖项里面没有web的包,可能是maven镜像由于网络下载不完全
把D:\apache-maven-3.6.3\conf\seetings.xml改一下其mirror,换成aliyun的镜像
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
再点击这个maven项目邮件->maven->download sources 重新下载资源
方法:
可能原因是没有在pom.xml中添加web依赖
添加:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
浙公网安备 33010602011771号