Step version for release
[portal/nonrtric-controlpanel.git] / webapp-backend / src / main / java / org / oransc / portal / nonrtric / controlpanel / config / TomcatWebServerConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.portal.nonrtric.controlpanel.config;
21
22 import java.lang.invoke.MethodHandles;
23 import org.apache.catalina.connector.Connector;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26 import org.springframework.beans.factory.annotation.Value;
27 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
28 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31
32 @Configuration
33 public class TomcatWebServerConfiguration {
34
35     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
36
37     @Value("${server.http.port}")
38     private int httpPort;
39
40     @Bean
41     public ServletWebServerFactory servletContainer() {
42         logger.debug("Http Port: {}", httpPort);
43         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
44         if (httpPort > 0) {
45             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
46         }
47         return tomcat;
48     }
49
50     private static Connector getHttpConnector(int port) {
51         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
52         connector.setScheme("http");
53         connector.setPort(port);
54         connector.setSecure(false);
55         return connector;
56     }
57
58 }