Provide the same customisation options for Reactive Web Servers as Servlet Web Servers #9572
Comments
The reactive factories for Tomcat and Undertow are also missing some customiser support: Connector customisers for the former and DeploymentInfo customisers for the latter. Perhaps that was intentional, but I can't think of a reason why such customisation shouldn't be supported in the reactive case. |
I don't think it was intentional, probably just an oversight. |
probably also need |
Oops, I missed that. Yeah, I think we do. Thanks @mbhave! |
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I currently testing Spring Boot 2.0.0.M2 and I was wondering how to customize Jetty Server with
JettyReactiveWebServerFactory
?With previous version I used
JettyServletWebServerFactory
which allowed to add Jetty Customizers. I was able to customize port, thread pool size and Jetty behaviour like remove ServerVersion Http header, enable Jetty request logging and so on. Ex :With the reactive version, I still can configure port and pool but I can't found how to customize other specific setting of Jetty server such as enabling logging of requests or disable some headers
Is it intentional ? Is there any kind of limitation concerning customization of Jetty when using the reactive version ?
Thank in advance for your help.
The text was updated successfully, but these errors were encountered: