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