summaryrefslogtreecommitdiffstats
path: root/engine-d-standalone/src/main/assembly/conf/application.yaml
diff options
context:
space:
mode:
authorGuangrongFu <fu.guangrong@zte.com.cn>2021-12-18 15:08:14 +0800
committerGuangrong Fu <fu.guangrong@zte.com.cn>2022-08-11 18:51:35 +0800
commitc4bd70c1f74cd04c441f76de4359e166a089660a (patch)
tree634a0da7181a1fa8030fb6beb14d8a7d2f6d86c3 /engine-d-standalone/src/main/assembly/conf/application.yaml
parent61da3e3d053548815054384e5e18750e87463ee9 (diff)
Switched from Dropwizard to Springboot
Issue-ID: HOLMES-511 Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn> Change-Id: I72b53ad4073e0a07a4c6a234781dc0d139584dda
Diffstat (limited to 'engine-d-standalone/src/main/assembly/conf/application.yaml')
-rw-r--r--engine-d-standalone/src/main/assembly/conf/application.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/engine-d-standalone/src/main/assembly/conf/application.yaml b/engine-d-standalone/src/main/assembly/conf/application.yaml
new file mode 100644
index 0000000..ed760ed
--- /dev/null
+++ b/engine-d-standalone/src/main/assembly/conf/application.yaml
@@ -0,0 +1,23 @@
+server:
+ port: 9102
+ servlet:
+ context-path: /api/holmes-engine-mgmt/v1
+ ssl:
+ key-store: /opt/onap/conf/holmes.keystore
+ key-store-password: holmes
+ #PKCS12
+ key-store-type: JKS
+
+logging:
+ config: classpath:logback-spring.xml
+
+spring:
+ application:
+ name: Holmes Engine Management
+ datasource:
+ dirver-class-name: org.postgresql.Driver
+ url: jdbc:postgresql://localhost:5432/holmes
+ username: holmes
+ password: holmespwd
+ mvc:
+ throw-exception-if-no-handler-found: true \ No newline at end of file