如何在 Spring Boot 中配置 Tomcat 关闭端口?

Posted

技术标签:

【中文标题】如何在 Spring Boot 中配置 Tomcat 关闭端口?【英文标题】:How to configure Tomcat shutdown port in Spring Boot? 【发布时间】:2017-09-12 23:12:50 【问题描述】:

寻找如何在 Spring Boot 应用程序中配置关闭端口的方法。

【问题讨论】:

【参考方案1】:

我不认为你可以这样配置 spring-boot 应用程序,因为它与底层容器非常相关,并且这个 tomcat 特定属性不会添加到你被允许使用的common application properties。

另一种解决方案是使用 spring boot 执行器端点。它有一个用于此类任务的shutdown 端点。您只需要使用 spring-actuator 并启用此端点,因为默认情况下它是禁用的。

Here 是另一个 SO 问题,虽然没有答案,但您可能会发现关于关闭 Spring Boot 应用程序的方法很有用。

【讨论】:

以上是关于如何在 Spring Boot 中配置 Tomcat 关闭端口?的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Spring Boot JAR 连接到远程 Oracle 数据库?

如何在 spring-boot 中禁用 spring-data-mongodb 自动配置

如何在 spring-boot 中配置 Jetty(很容易?)

spring boot 使用 jsp视图(巨坑)

如何在 Spring Boot 中配置 Tomcat 关闭端口?

如何在 Spring Boot 中使用 Spring Security 配置 CORS? [复制]