This is an automated email from the ASF dual-hosted git repository.
ptuomola pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 6f4c75f FINERACT-1489: Faster Tomcat connector configuration
6f4c75f is described below
commit 6f4c75f83a03628c4b81f7d6996d8ea2fc021adf
Author: Aleksandar Vidakovic <[email protected]>
AuthorDate: Mon Jan 17 01:21:46 2022 +0100
FINERACT-1489: Faster Tomcat connector configuration
---
.../core/config/TomcatConnectorCustomizer.java | 36 ++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git
a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/core/config/TomcatConnectorCustomizer.java
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/core/config/TomcatConnectorCustomizer.java
new file mode 100644
index 0000000..ef7576b
--- /dev/null
+++
b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/core/config/TomcatConnectorCustomizer.java
@@ -0,0 +1,36 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.fineract.infrastructure.core.config;
+
+import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
+import
org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
+import org.springframework.boot.web.server.WebServerFactoryCustomizer;
+import
org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
+import org.springframework.stereotype.Component;
+
+@Component
+@ConditionalOnClass(name = "org.apache.coyote.http11.Http11Nio2Protocol")
+public class TomcatConnectorCustomizer implements
WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {
+
+ @Override
+ public void customize(ConfigurableServletWebServerFactory factory) {
+ ((TomcatServletWebServerFactory)
factory).setProtocol("org.apache.coyote.http11.Http11Nio2Protocol");
+ }
+}