燕山石化项目数据提取服务
xing
2023-02-24 08c8552eb977f27304a4785e5a671905463d83c1
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
#配置数据源
spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://10.101.5.98:3306/yssh?charset=utf8mb4&useSSL=false&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
    username: root
    password: 123456
  saveLog:
    path: D:\yssh_data\LBM
#    driver-class-name: org.postgresql.Driver
#    url: jdbc:postgresql://172.31.130.209:5866/cyioc?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=false
#    username: sysdba
#    password: Hello@123
 
#  web:
#    resources:
#      static-locations: "classpath:/dist"
swagger:
  enabled: true
 
mybatis-plus:
  mapper-locations: classpath*:/mapper/**Mapper.xml
#  configuration:
#    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
 
# 定时任务
task:
  # cron 表达式 下面为每天凌晨两点执行一次
  cron: 0 0 2 * * ?
 
server:
  port: 8848