com.tairitsu.ignotus.foundation.config.TomcatWebServerCustomizer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignotus-foundation Show documentation
Show all versions of ignotus-foundation Show documentation
JSON:API like Controller utils.
package com.tairitsu.ignotus.foundation.config
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory
import org.springframework.boot.web.server.WebServerFactoryCustomizer
import org.springframework.stereotype.Component
import org.springframework.boot.web.embedded.tomcat.TomcatConnectorCustomizer as OriginalTomcatConnectorCustomizer
@Component
class TomcatWebServerCustomizer : WebServerFactoryCustomizer {
override fun customize(factory: TomcatServletWebServerFactory) {
factory.addConnectorCustomizers(OriginalTomcatConnectorCustomizer { connector ->
connector.setProperty("relaxedQueryChars", "[]")
})
}
}