WebServerFactoryCustomizer

Strategy interface for customizing web server factories. Any beans of this type will get a callback with the server factory before the server itself is started, so you can set the port, address, error pages etc.

Beware: calls to this interface are usually made from a WebServerFactoryCustomizerBeanPostProcessor which is a BeanPostProcessor (so called very early in the ApplicationContext lifecycle). It might be safer to lookup dependencies lazily in the enclosing BeanFactory rather than injecting them with @Autowired.

Author

Phillip Webb

Dave Syer

Brian Clozel

Since

2.0.0

Parameters

<T>

the configurable web server factory

See also

Functions

Link copied to clipboard
abstract fun customize(factory: T)
Customize the specified WebServerFactory.