@Author Lyp @Date 2020/6/30 @Email l1yp@qq.com
| 11 | * @Email l1yp@qq.com |
| 12 | */ |
| 13 | @Configuration |
| 14 | public class Http2Configuration { |
| 15 | @Bean |
| 16 | public UndertowServletWebServerFactory embeddedServletContainerFactory() { |
| 17 | UndertowServletWebServerFactory factory = new UndertowServletWebServerFactory(); |
| 18 | factory.addBuilderCustomizers(builder -> builder.setServerOption(UndertowOptions.ENABLE_HTTP2, true)); |
| 19 | return factory; |
| 20 | } |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected