Class JettyWebServerFactoryCustomizer
java.lang.Object
org.springframework.boot.jetty.autoconfigure.JettyWebServerFactoryCustomizer
- All Implemented Interfaces:
WebServerFactoryCustomizer<ConfigurableJettyWebServerFactory>
,Ordered
public class JettyWebServerFactoryCustomizer
extends Object
implements WebServerFactoryCustomizer<ConfigurableJettyWebServerFactory>, Ordered
Customization for Jetty-specific features common for both Servlet and Reactive servers.
- Since:
- 4.0.0
- Author:
- Brian Clozel, Phillip Webb, HaiTao Zhang, Rafiullah Hamedy, Florian Storz, Michael Weidmann
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
ConstructorsConstructorDescriptionJettyWebServerFactoryCustomizer
(Environment environment, ServerProperties serverProperties, JettyServerProperties jettyProperties) -
Method Summary
-
Constructor Details
-
JettyWebServerFactoryCustomizer
public JettyWebServerFactoryCustomizer(Environment environment, ServerProperties serverProperties, JettyServerProperties jettyProperties)
-
-
Method Details
-
getOrder
-
customize
Description copied from interface:WebServerFactoryCustomizer
Customize the specifiedWebServerFactory
.- Specified by:
customize
in interfaceWebServerFactoryCustomizer<ConfigurableJettyWebServerFactory>
- Parameters:
factory
- the web server factory to customize
-