We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8065a0b commit 663c593Copy full SHA for 663c593
1 file changed
consulo.app/plugins-frontend/src/main/java/consulo/app/plugins/frontend/TomcatConfiguration.java
@@ -0,0 +1,20 @@
1
+package consulo.app.plugins.frontend;
2
+
3
+import org.springframework.boot.tomcat.servlet.TomcatServletWebServerFactory;
4
+import org.springframework.boot.web.server.WebServerFactoryCustomizer;
5
+import org.springframework.context.annotation.Bean;
6
+import org.springframework.context.annotation.Configuration;
7
8
+/**
9
+ * @author VISTALL
10
+ * @since 2026-03-09
11
+ */
12
+@Configuration
13
+public class TomcatConfiguration {
14
+ @Bean
15
+ public WebServerFactoryCustomizer<TomcatServletWebServerFactory> tomcatCustomizer() {
16
+ return factory -> factory.addConnectorCustomizers(connector -> {
17
+ connector.setProperty("encodedSolidusHandling", "passthrough");
18
+ });
19
+ }
20
+}
0 commit comments