summaryrefslogtreecommitdiffstats
path: root/configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-10-04 20:18:59 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-04 20:18:59 +0000
commit3ece4fafb62aa7dd1b68d78a17bacc822d1b02df (patch)
treeaa2380f34819257047af7d033cdcb4c461f15eee /configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties
parent8e3ee6e07618c9afac5eb2aa1bd8faa3949b6e56 (diff)
parentdd065f3dbb499762a39bddf0afe794e9b4aa67ec (diff)
Merge "Refactor code and fix some ui issues"
Former-commit-id: 2b3b4a626929aac57c8da20ff7980bb16e37b73b
Diffstat (limited to 'configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties')
-rw-r--r--configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties33
1 files changed, 33 insertions, 0 deletions
diff --git a/configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties b/configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties
new file mode 100644
index 00000000..aee97f8e
--- /dev/null
+++ b/configbackuprestore/vnfconfigbackupservice/src/main/resources/application.properties
@@ -0,0 +1,33 @@
+server.port = 9003
+
+spring.mvc.view.prefix = /WEB-INF/views/
+spring.mvc.view.suffix = .jsp
+
+sdnc.rest.vnf.api.host=10.53.172.134
+sdnc.rest.vnf.api.port=8282
+sdnc.rest.vnf.api.basepath=/restconf
+sdnc.rest.vnf.api.username=admin
+sdnc.rest.vnf.api.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
+
+# ===============================
+# Set here configurations for the database connection
+spring.datasource.url=jdbc:mariadb://localhost:3306/configtest
+spring.datasource.username=root
+spring.datasource.password=root
+spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
+# Keep the connection alive if idle for a long time (needed in production)
+spring.datasource.testWhileIdle=true
+spring.datasource.validationQuery=SELECT 1
+# ===============================
+# = JPA / HIBERNATE
+# ===============================
+# Show or not log for each sql query
+spring.jpa.show-sql=true
+# Hibernate ddl auto (create, create-drop, update): with "create-drop" the database
+# schema will be automatically created afresh for every start of application
+spring.jpa.hibernate.ddl-auto=update
+# Naming strategy
+spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyHbmImpl
+spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
+# Allows Hibernate to generate SQL optimized for a particular DBMS
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect \ No newline at end of file