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
|
# second mysql database connection:
|
14
|
spring.second-datasource.username=root
|
15
|
spring.second-datasource.password=testtest
|
16
|
spring.second-datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
17
|
|
18
|
|
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
|