-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathapplication.yml
More file actions
47 lines (43 loc) · 829 Bytes
/
application.yml
File metadata and controls
47 lines (43 loc) · 829 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
40
41
42
43
44
45
46
47
server:
port: 80
spring:
datasource:
url: jdbc:h2:~/im
driver-class-name: org.h2.Driver
username: sa
password: 123456
schema: classpath:db/schema.sql
data: classpath:db/data.sql
h2:
console:
path: /h2-console
enabled: true
jpa:
database: h2
show-sql: true
hibernate:
ddl-auto: update
redis:
host: 127.0.0.1
port: 6379
maxheap: 200m
websocket:
connector:
server:
readIdleSecond: 0
writeIdleSecond: 0
allIdleSecond: 360
sendBuff: -1
recvBuff: -1
backlog: 500000
bossThreads: 1
connTimeoutMills: 10000
soLinger: 0
port: 8080
reuseAddr: true
useDirectBuffer: true
useEpoll: true
useMemPool: true
userThreads: 50
workerThreads: 0
idleTimes: 5