1
|
# jpa settings
|
2
|
spring.jpa.hibernate.ddl-auto=update
|
3
|
spring.jpa.show-sql=true
|
4
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect
|
5
|
|
6
|
# mysql database connection:
|
7
|
spring.datasource.jdbc-url=jdbc:mysql://localhost:3306/spade
|
8
|
spring.datasource.username=root
|
9
|
spring.datasource.password=
|
10
|
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
|
11
|
|
12
|
# mssql database connection:
|
13
|
spring.second-datasource.jdbc-url=jdbc:sqlserver://localhost:1433;databaseName=authspade;encrypt=true;trustServerCertificate=true
|
14
|
spring.second-datasource.username=test
|
15
|
spring.second-datasource.password=
|
16
|
spring.second-datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
|
17
|
|
18
|
# admin account username and password:
|
19
|
account.user.name=root
|
20
|
account.user.password=
|
21
|
|
22
|
DATA_PATH=data/
|
23
|
|
24
|
# custom error pages
|
25
|
server.error.whitelabel.enabled=false
|
26
|
|
27
|
# logger
|
28
|
logging.level.root=INFO
|
29
|
logging.level.cz.zcu.fav.kiv.antipatterndetectionapp=TRACE
|
30
|
|
31
|
# security
|
32
|
auth.realm.login=http://localhost:8081/login
|
33
|
auth.realm.logout=http://localhost:8081/logout
|
34
|
auth.realm.authenticate=http://localhost:8081/authenticate
|
35
|
|
36
|
#default configuration user
|
37
|
default_user_id = 2
|