123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- server:
- port: 6090
- # ssl:
- # key-store: classpath:www.xzeai.com.jks
- # key-store-password: 520e2ey8e24
- # key-store-type: jks
- spring:
- thymeleaf:
- suffix: .html
- prefix: classpath:/
- cache: false
- datasource:
- username: root
- password: 123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/kaojiplatform?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/mvc/dao/*.xml
- type-aliases-package: com.mvc.entity
- pagehelper:
- helperDialect: mysql
- reasonable: true
- supportMethodsArguments: true
- params: count=countSql
- upload-path: D:/shangchuan/picture/
- download-path: D:/xzeai_download/
- resource_url: http://127.0.0.1:6090
- #resource_url: http://192.168.8.111:6090
- #resource_url: http://114.242.31.4:6090
- #======================================#
- #========== Socket Server settings ===========#
- #======================================#
- wm-socket:
- # 监听端口 2323
- port: 12323
- # 线程池 - 保持线程数 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
- #wxMini:
- # appId: 123
- # secret: nihao
|