Moving Historical Queries to spring boot
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / Application.java
index dfd8144..3ea6ab8 100644 (file)
  */
 package org.onap.aai.datarouter;
 
-import org.springframework.boot.SpringApplication;
+import java.util.HashMap;
+
+import org.eclipse.jetty.util.security.Password;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.builder.SpringApplicationBuilder;
+import org.springframework.boot.web.support.SpringBootServletInitializer;
 
 
 @SpringBootApplication
-public class Application {
+public class Application extends SpringBootServletInitializer{
 
     public static void main(String[] args) {
-        SpringApplication.run(Application.class, args);
+      String keyStorePassword = System.getProperty("KEY_STORE_PASSWORD");
+      if(keyStorePassword==null || keyStorePassword.isEmpty()){
+        throw new RuntimeException("Env property KEY_STORE_PASSWORD not set");
+      }
+      HashMap<String, Object> props = new HashMap<>();
+      props.put("server.ssl.key-store-password", Password.deobfuscate(keyStorePassword));
+      new Application().configure(new SpringApplicationBuilder(Application.class).properties(props)).run(args);
+      
+       
     }
 
 }
\ No newline at end of file