我的没有下载tomcat

来源:1-5 通过官方Initializr构建springboot

慕无忌8511297

2021-08-30 17:20

我的没有下载tomcat包,是怎么回事?

写回答 关注

2回答

  • zxcvbnm0101day
    2022-08-10 17:33:31

    我的也是,在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进行自动导包.
  • 慕神9129331
    2022-06-30 09:07:17

    没有完全理解你的问题,是没有下载tomcat服务器,还是运行jar包的时候出错呢?

SpringBoot 2.× 手把手零基础入门与进阶

适合SpringBoot初学者,带你从入门到进阶,系统掌握SpringBoot框架。

13693 学习 · 61 问题

查看课程

相似问题