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

org.heigit.ohsome.ohsomeapi.config.TomcatConfig Maven / Gradle / Ivy

The newest version!
package org.heigit.ohsome.ohsomeapi.config;

import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/** Used to allow the not encoded pipe sign (|) in request URLs. */
@Configuration
public class TomcatConfig {
  @Bean
  public ConfigurableServletWebServerFactory webServerFactory() {
    TomcatServletWebServerFactory factory = new TomcatServletWebServerFactory();
    factory.addConnectorCustomizers(connector -> connector.setProperty("relaxedQueryChars", "|"));
    return factory;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy