gpt4 book ai didi

java - 我是否在使用 Tomcat 网络服务器?

转载 作者:行者123 更新时间:2023-11-28 22:47:45 25 4
gpt4 key购买 nike

所以我在 Spring Boot 中制作这个应用程序,我知道默认情况下,Spring Boot 嵌入到 tomcat Web 服务器中。但我不确定它是 tomcat 网络服务器还是其他因为在我的依赖项中我的代码中没有 tomcat 依赖项。但是我通过

成功访问了网络服务器
localhost:8080

这是我的依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>

那我是不是在用tomcat服务器呢?

最佳答案

您默认使用嵌入式 tomcat,因为 spring-boot-starter-web 依赖于可传递的 tomcat 库。

更准确地说,除其他外,spring-boot-starter-web 在其 pom.xml 中具有以下定义:

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

关于java - 我是否在使用 Tomcat 网络服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52487723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com