NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / configbackuprestore / vnfconfigbackupservice / src / main / resources / application.properties
1 server.port = 9003
2
3 spring.mvc.view.prefix = /WEB-INF/views/
4 spring.mvc.view.suffix = .jsp
5
6 sdnc.rest.vnf.api.host=10.53.172.134
7 sdnc.rest.vnf.api.port=8282
8 sdnc.rest.vnf.api.basepath=/restconf
9 sdnc.rest.vnf.api.username=admin
10 sdnc.rest.vnf.api.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
11
12 # ===============================
13 # Set here configurations for the database connection
14 spring.datasource.url=jdbc:mariadb://localhost:3306/configtest
15 spring.datasource.username=root
16 spring.datasource.password=root
17 spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
18 # Keep the connection alive if idle for a long time (needed in production)
19 spring.datasource.testWhileIdle=true
20 spring.datasource.validationQuery=SELECT 1
21 # ===============================
22 # = JPA / HIBERNATE
23 # ===============================
24 # Show or not log for each sql query
25 spring.jpa.show-sql=true
26 # Hibernate ddl auto (create, create-drop, update): with "create-drop" the database
27 # schema will be automatically created afresh for every start of application
28 spring.jpa.hibernate.ddl-auto=update
29 # Naming strategy
30 spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyHbmImpl
31 spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
32 # Allows Hibernate to generate SQL optimized for a particular DBMS
33 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect