All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tairitsu.ignotus.foundation.config.TomcatWebServerCustomizer.kt Maven / Gradle / Ivy

There is a newer version: 1.0.32
Show newest version
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", "[]")
        })
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy