aboutsummaryrefslogtreecommitdiffstats
path: root/configbackuprestore/vnfconfigbackupservice/src/main/resource/application.properties
blob: 4c2287b2c8ac5b376c7faa2bb7d4a9ef5d79e53d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
server.port = 9003
#server.error.whitelabel.enabled=false
spring.mvc.view.prefix = /WEB-INF/views/
spring.mvc.view.suffix = .jsp
#
#spring.datasource.url=jdbc:mariadb://localhost:3306/testreports?useSSL=false
##spring.datasource.url=jdbc:mysql://localhost:3306/mysql?useSSL=false
##spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
#spring.datasource.name=mysql
#spring.jpa.database=testreports
#spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
##org.hibernate.dialect.MySQLDialect
#
#
#spring.datasource.username=root
#spring.datasource.password=12345
#spring.jpa.generate-ddl=true
#spring.datasource.tomcat.max-wait=20000
#spring.datasource.tomcat.max-active=50
#spring.datasource.tomcat.max-idle=20
#spring.datasource.tomcat.min-idle=15
#
spring.jpa.hibernate.ddl-auto=update
#
#spring.jpa.properties.hibernate.dialect =org.hibernate.dialect.MySQL5InnoDBDialect
## org.hibernate.dialect.MySQLDialect
#
#spring.jpa.properties.hibernate.id.new_generator_mappings = false
#spring.jpa.properties.hibernate.format_sql = true
#
#logging.level.org.hibernate.SQL=DEBUG
#logging.level.org.hibernate.type.descriptor.sql.BasicBinder=TRACE
sdnc.rest.vnf.api.host=10.53.172.121
sdnc.rest.vnf.api.port=8282
sdnc.rest.vnf.api.basepath=/restconf
sdnc.rest.vnf.api.username=admin
sdnc.rest.vnf.api.password=Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U

spring.jackson.serialization.fail-on-empty-beans=false

server.tomcat.uri-encoding=utf-8

#server.error.whitelabel.enabled=false
#spring.mvc.view.prefix = /WEB-INF/views/
#spring.mvc.view.suffix = .jsp

logging.level.org.springframework=TRACE
logging.level.com=TRACE

# ===============================
# 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=validate
# 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