org.springframework.boot.web.server.AbstractConfigurableWebServerFactory Java Examples
The following examples show how to use
org.springframework.boot.web.server.AbstractConfigurableWebServerFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PortCustomizer.java From vertx-spring-boot with Apache License 2.0 | 4 votes |
public PortCustomizer(AbstractConfigurableWebServerFactory factory) { this.factory = factory; }
Example #2
Source File: AddressCustomizer.java From vertx-spring-boot with Apache License 2.0 | 4 votes |
public AddressCustomizer(AbstractConfigurableWebServerFactory factory) { this.factory = factory; }
Example #3
Source File: CompressionCustomizer.java From vertx-spring-boot with Apache License 2.0 | 4 votes |
public CompressionCustomizer(AbstractConfigurableWebServerFactory factory) { this.factory = factory; }
Example #4
Source File: SslCustomizer.java From vertx-spring-boot with Apache License 2.0 | 4 votes |
public SslCustomizer(AbstractConfigurableWebServerFactory factory) { this.factory = factory; this.propertyMapper = PropertyMapper.get(); }
Example #5
Source File: RestServletInitializer.java From servicecomb-java-chassis with Apache License 2.0 | 4 votes |
@Override public void customize(AbstractConfigurableWebServerFactory factory) { this.factory = factory; }