您可以在Spring Boot中禁用HTTP / 1.1吗?

时间:2018-10-25 13:21:01

标签: spring-boot http2

有可能吗?如果还将客户端配置为使用HTTP / 2,那么也可以摆脱从1.1到2的升级步骤。

1 个答案:

答案 0 :(得分:1)

从Spring Boot 2.1.0开始,尚无配置来禁用HTTP / 1.1(尽管现在考虑它可能还为时过早)。


documetation指出您可以启用HTTP / 2支持(与禁用对较早版本的支持相反):

  

您可以使用server.http2.enabled配置属性在Spring Boot应用程序中启用HTTP / 2支持。该支持取决于所选的Web服务器和应用程序环境。

如下:

# Whether to enable HTTP/2 support, if the current environment supports it
server.http2.enabled=true

常见应用程序属性列表可用here