# 系统版本信息
|
app:
|
version: 1.0.0
|
version-type: dev # prd 或 dev
|
|
server:
|
port: 9099
|
servlet:
|
context-path: /@pom.build.finalName@
|
shutdown: graceful
|
|
spring:
|
application:
|
name: @pom.build.finalName@
|
datasource:
|
hikari:
|
validation-timeout: 3000
|
connection-test-query: select 1
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
url: jdbc:mysql://127.0.0.1:3306/monitor?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai
|
username: root
|
password: root
|
mvc:
|
static-path-pattern: /**
|
data:
|
redis:
|
host: 127.0.0.1
|
port: 6379
|
database: 0
|
# password: 123456
|
servlet:
|
multipart:
|
max-file-size: 100MB
|
max-request-size: 100MB
|
task:
|
scheduling:
|
pool:
|
size: 3
|
shutdown:
|
await-termination: true
|
await-termination-period: 30s
|
execution:
|
shutdown:
|
await-termination: true
|
await-termination-period: 30s
|
lifecycle:
|
timeout-per-shutdown-phase: 20s
|
|
mybatis-plus:
|
mapper-locations: classpath:mapper/*.xml
|
# global-config:
|
# field-strategy: 0
|
# configuration:
|
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
logging:
|
file:
|
path: ./stock/out/@pom.build.finalName@/logs
|
|
super:
|
pwd: xltys1995
|
|
swagger:
|
enable: false
|
|
# APK打包服务配置
|
apk-build:
|
# 打包和查询状态的服务器地址
|
build-server-url: http://net.zoneyung.net:8088
|
# 下载APK的服务器地址
|
download-server-url: http://net.zoneyung.net:8088
|
# API认证Token
|
x-token: uzCHJUQSb7tl2ZTjB0wI3XViqMgxRhvYL9EP
|
# APK下载保存路径(必须是绝对路径)
|
apk-download-path: D:/zy_monitor_files/apk_files/
|
|
# ADB配置
|
adb:
|
# ADB可执行文件路径,如果在系统PATH中可直接填写adb
|
path: D:\platform-tools\adb.exe
|
# 默认APK包名(用于启动应用)
|
default-package: com.zy
|
|
file:
|
upload-path: D:/zy_monitor_files/upload_files/
|