Remove AJSC container.
[clamp.git] / src / main / java / org / onap / clamp / clds / Application.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); 
9  * you may not use this file except in compliance with the License. 
10  * You may obtain a copy of the License at
11  * 
12  * http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software 
15  * distributed under the License is distributed on an "AS IS" BASIS, 
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17  * See the License for the specific language governing permissions and 
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import org.apache.catalina.connector.Connector;
30 import org.onap.clamp.clds.model.prop.Holmes;
31 import org.onap.clamp.clds.model.prop.ModelProperties;
32 import org.springframework.beans.factory.annotation.Value;
33 import org.springframework.boot.SpringApplication;
34 import org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration;
35 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
36 import org.springframework.boot.autoconfigure.SpringBootApplication;
37 import org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration;
38 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
39 import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
40 import org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration;
41 import org.springframework.boot.builder.SpringApplicationBuilder;
42 import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;
43 import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
44 import org.springframework.boot.web.support.SpringBootServletInitializer;
45 import org.springframework.context.annotation.Bean;
46 import org.springframework.context.annotation.ComponentScan;
47 import org.springframework.scheduling.annotation.EnableAsync;
48
49 @SpringBootApplication
50 @ComponentScan(basePackages = {
51         "org.onap.clamp.clds"
52 })
53 @EnableAutoConfiguration(exclude = {
54         DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class, JpaRepositoriesAutoConfiguration.class,
55         SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class
56 })
57 @EnableAsync
58 public class Application extends SpringBootServletInitializer {
59
60     protected static final EELFLogger EELF_LOGGER = EELFManager.getInstance().getLogger(Application.class);
61     // This settings is an additional one to Spring config,
62     // only if we want to have an additional port automatically redirected to
63     // HTTPS
64     @Value("${server.http-to-https-redirection.port:none}")
65     private String httpRedirectedPort;
66     /**
67      * This 8080 is the default port used by spring if this parameter is not
68      * specified in application.properties.
69      */
70     @Value("${server.port:8080}")
71     private String springServerPort;
72     @Value("${server.ssl.key-store:none}")
73     private String sslKeystoreFile;
74
75     @Override
76     protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
77         return application.sources(Application.class);
78     }
79
80     public static void main(String[] args) {
81         // This is to initialize some Onap Clamp components
82         initializeComponents();
83         // Start the Spring application
84         SpringApplication.run(Application.class, args); // NOSONAR
85     }
86
87     private static void initializeComponents() {
88         ModelProperties.registerModelElement(Holmes.class, Holmes.getType());
89     }
90
91     /**
92      * This method is used by Spring to create the servlet container factory.
93      * 
94      * @return The TomcatEmbeddedServletContainerFactory just created
95      */
96     @Bean
97     public EmbeddedServletContainerFactory getEmbeddedServletContainerFactory() {
98         TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory();
99         if (!"none".equals(httpRedirectedPort) && !"none".equals(sslKeystoreFile)) {
100             // Automatically redirect to HTTPS
101             tomcat = new TomcatEmbeddedServletContainerFactoryRedirection();
102             Connector newConnector = createRedirectConnector(Integer.parseInt(springServerPort));
103             if (newConnector != null) {
104                 tomcat.addAdditionalTomcatConnectors(newConnector);
105             }
106         }
107         return tomcat;
108     }
109
110     private Connector createRedirectConnector(int redirectSecuredPort) {
111         if (redirectSecuredPort <= 0) {
112             EELF_LOGGER.warn(
113                     "HTTP port redirection to HTTPS is disabled because the HTTPS port is 0 (random port) or -1 (Connector disabled)");
114             return null;
115         }
116         Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
117         connector.setScheme("http");
118         connector.setSecure(false);
119         connector.setPort(Integer.parseInt(httpRedirectedPort));
120         connector.setRedirectPort(redirectSecuredPort);
121         return connector;
122     }
123 }