cy
2023-02-09 6804ce99b45625383a41fcfce56de85f621790e0
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
spring:
  mvc:
    static-path-pattern: /static         # 设置静态文件路径,js,css等
  profiles:
    active: prod
  http:
    encoding:
      charset: UTF-8
      enabled: true
      force: true
  servlet:
    #允许传输文件大小配置
    multipart:
      max-file-size: 100MB
      max-request-size: 200MB
  application:
    name: integrated-schedule
  #资源文件映射
  resources:
    static-locations: classpath:/verifyImg/,file:${file.path}
  banner:
    location: banner.txt
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
 
#mybatis plus
mybatis-plus:
  mapper-locations: classpath:mapper/**/*Mapper.xml
  #实体扫描,多个package用逗号或者分号分隔
  type-aliases-package: com.integrated.schedule.domain.*;
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
#    log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
    map-underscore-to-camel-case: true
    cache-enabled: true #开启缓存
  #全局id生成策略
  global-config:
    db-config:
      id-type: id_worker_str
      logic-delete-value: 1
      logic-not-delete-value: 0
      insert-strategy: not_null
      update-strategy: not_null
#日志配置
logging:
  file: log/out.log
  pattern:
    console: "%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n"
    file: "%d{yyyy/MM/dd-HH:mm} [%thread] %-5level %logger- %msg%n"
  level:
    root: info
    com.template.base: debug
#分页
pagehelper:
  reasonable: true # 禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据
  support-methods-arguments: true
  params: count=countSql
  row-bounds-with-count: true
  helper-dialect: oracle
jasypt:
  encryptor:
    password: EbfYkitulv73I2p0mXI50JMXoaxZTKJ0
 
zyyt:
  ipPort: http://10.225.71.10:9090