forked from Raysmond/SpringBlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication-dev.yml
More file actions
39 lines (32 loc) · 841 Bytes
/
Copy pathapplication-dev.yml
File metadata and controls
39 lines (32 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
spring:
profiles:
active: dev
thymeleaf:
cache: false
devtools:
restart:
enabled: true
exclude: static/**,templates/**
jade4j:
caching: false
jpa:
show-sql: true
datasource:
type: com.zaxxer.hikari.HikariDataSource
url: jdbc:mysql://127.0.0.1/spring_blog_dev?useUnicode=true&characterEncoding=utf8&useSSL=false
username: root
password:
hikari:
data-source-properties:
cachePrepStmts: true
prepStmtCacheSize: 250
prepStmtCacheSqlLimit: 2048
useServerPrepStmts: true
redis:
host: localhost
port: 6379
default_expire_time: 86400
logging:
level:
org.springframework.web: ERROR
com.raysmond.blog: DEBUG