Junjie
2026-04-11 d1ac0e8f3e6b61f869c9f1cd4eea73056cf3f483
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 系统版本信息
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/