• Andy Wilkinson's avatar
    Do not enable H2C by default when using Reactor Netty · c662c404
    Andy Wilkinson authored
    Previously, Reactor Netty was the only embedded server that enabled
    H2C by default. This commit updates the factory to only enable HTTP/2
    when SSL has also been configured, aligning it with Jetty, Tomcat,
    and Undertow.
    
    If H2C is required, it can be enabled using a NettyServerCustomizer:
    
    @Bean
    NettyServerCustomizer h2cCustomizer() {
        return (httpServer) ->
               httpServer.protocol(HttpProtocol.HTTP11, HttpProtocol.H2C);
    }
    
    Closes gh-17867
    c662c404
Name
Last commit
Last update
..
spring-boot Loading commit data...
spring-boot-actuator Loading commit data...
spring-boot-actuator-autoconfigure Loading commit data...
spring-boot-autoconfigure Loading commit data...
spring-boot-cli Loading commit data...
spring-boot-dependencies Loading commit data...
spring-boot-devtools Loading commit data...
spring-boot-docs Loading commit data...
spring-boot-parent Loading commit data...
spring-boot-properties-migrator Loading commit data...
spring-boot-starters Loading commit data...
spring-boot-test Loading commit data...
spring-boot-test-autoconfigure Loading commit data...
spring-boot-tools Loading commit data...
pom.xml Loading commit data...