52 lines
915 B
YAML
52 lines
915 B
YAML
logging:
|
|
level:
|
|
root: info
|
|
web: debug
|
|
com.eactive: debug
|
|
org:
|
|
springframework:
|
|
web:
|
|
socket: debug
|
|
|
|
server:
|
|
error.include-message: always
|
|
servlet:
|
|
session:
|
|
timeout: 180m
|
|
|
|
context-path: /
|
|
|
|
spring:
|
|
datasource:
|
|
url: jdbc:h2:file:./db/apidb
|
|
driverClassName: org.h2.Driver
|
|
username: sa
|
|
password:
|
|
hikari:
|
|
maximum-pool-size: 20
|
|
minimum-idle: 5
|
|
idle-timeout: 30000
|
|
max-lifetime: 60000
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
show-sql: false
|
|
database-platform: org.hibernate.dialect.H2Dialect
|
|
thymeleaf:
|
|
prefix: classpath:/templates/
|
|
check-template-location: true
|
|
suffix: .html
|
|
mode: HTML
|
|
cache: false
|
|
order: 0
|
|
h2:
|
|
console:
|
|
enabled: true
|
|
path: /h2-console
|
|
settings:
|
|
web-allow-others: true
|
|
|