我的没有下载tomcat
我的没有下载tomcat包,是怎么回事?
我的没有下载tomcat包,是怎么回事?
2021-08-30
我的也是,在Maven导入依赖没有org.apache.tomcat.embed.tomcat-embed-core.9.0.45,
1.检查你的File-Setting-Maven-setting.xml是否配置正确
2.不排除是依赖版本问题,我使用的是2.7.2版本,可以降低版本,我就把version降低到2.4.5
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.5</version> <relativePath/> </parent> 另外还需要确认的是你的spring-boot-starter后面有没有web, 完整的是 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 若还是不行,就不要自己使用idea创建Springboot项目, 在https://spring.io官网的samples进行下载案例并使用https://github.com/spring-io/sagan该案例进行Import 导入项目.并点击Import Changes进行自动导包.
举报