7e9f8d1540234ce46e1996ae39f5181b09a3e29c
[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 org.apache.catalina.connector.Connector;
23 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
24 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
25 import org.springframework.context.annotation.Bean;
26 import org.springframework.context.annotation.Configuration;
27
28 @Configuration
29 public class TomcatWebServerConfiguration {
30
31     @Bean
32     public ServletWebServerFactory servletContainer() {
33         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
34         tomcat.addAdditionalTomcatConnectors(getHttpConnector());
35         return tomcat;
36     }
37
38     private static Connector getHttpConnector() {
39         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
40         connector.setScheme("http");
41         connector.setPort(8080);
42         connector.setSecure(false);
43         return connector;
44     }
45
46 }