I'm using spring boot (1.2.1 as of now) and I need to increase the default 8k request header size limit which lives in HttpConfiguration
class in Jetty. Looking into JettyEmbeddedServletContainerFactory
which I can get hold of via EmbeddedServletContainerCustomizer
but can't see the way how to change that.
I did have a look on the JettyServerCustomizer
as well - I understand I can get hold of the jetty Server
via that but again - no way how to change the HttpConfiguration
here.
Any tips will be much appreciated.