Projekt

Obecné

Profil

Stáhnout (1001 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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.jdbc-url=jdbc:mysql://localhost:3306/spade
10
spring.datasource.username=root
11
spring.datasource.password=
12
spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver
13

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

    
27
# keycloak
28
spring.security.oauth2.resourceserver.jwt.issuer-uri=http://localhost:9080/auth/realms/spade
29

    
30
#logging.level.org.springframework.security=debug
(3-3/4)