Projekt

Obecné

Profil

Stáhnout (1.02 KB) 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
detecting.service.url=http://localhost:8081
21

    
22
# custom error pages
23
server.error.whitelabel.enabled=false
24

    
25
# logger
26
logging.level.root=INFO
27
logging.level.cz.zcu.fav.kiv.antipatterndetectionapp=TRACE
28

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

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