1
|
spring.config.name=application,application-${spring.profiles.active}
|
2
|
|
3
|
# jpa settings
|
4
|
spring.jpa.hibernate.ddl-auto=update
|
5
|
spring.jpa.show-sql=true
|
6
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect
|
7
|
|
8
|
# first mysql database connection:
|
9
|
spring.datasource.username=root
|
10
|
spring.datasource.password=testtest
|
11
|
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
12
|
|
13
|
# mssql database connection:
|
14
|
spring.second-datasource.username=test
|
15
|
spring.second-datasource.password=test
|
16
|
spring.second-datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
|
17
|
|
18
|
spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:9080/auth/realms/spade
|
19
|
|
20
|
# custom error pages
|
21
|
server.error.whitelabel.enabled=false
|
22
|
|
23
|
# logger
|
24
|
logging.level.root=INFO
|
25
|
logging.level.cz.zcu.fav.kiv.antipatterndetectionapp=TRACE
|