12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- server:
- port: 8866
- spring:
- thymeleaf:
- suffix: .html
- prefix: classpath:/
- cache: false
- datasource:
- username: wmuser
- password: p1EY7Uax1QocMhx#
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://49.232.111.64:3306/wm_test?allowMultiQueries=true
- servlet:
- multipart:
- max-file-size: 10MB
- max-request-size: 10MB
- mvc:
- static-path-pattern: /static/**
- web:
- resources:
- static-locations: classpath:/static
- mybatis:
- mapper-locations: classpath:com/hongcheng/display/dao/*.xml,classpath:com/hongcheng/copy/dao/*.xml
- type-aliases-package: com.hongcheng.display.entity,com.hongcheng.copy.entity
- upload-path: C:/hongcheng/test/
- resource_url: http://49.232.111.64:8866
- #======================================#
- #========== Socket Server settings ===========#
- #======================================#
- wm-socket:
- # 监听端口 12323
- port: 10012
- # 线程池 - 保持线程数 20
- pool-keep: 20
- # 线程池 - 核心线程数 10
- pool-core: 10
- # 线程池 - 最大线程数 20
- pool-max: 30
- # 线程队列容量 10
- pool-queue-init: 10
- # socket连接超时
- time-out: 9000
- super:
- username: admin
- password: 123456
|