Blame view

springboot/src/main/resources/application-dev.yml 1.04 KB
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
  server:
    port: 8008
    tomcat:
      uri-encoding: UTF-8
  
  
  
  spring:
    servlet:
      multipart:
9750b443   王彪总   fix(config): 更新配置...
11
12
        maxFileSize: 200MB
        maxRequestSize: 200MB
88e030b7   王彪总   init project
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
    profiles:
      active: share
    http:
      encoding:
        charset: UTF-8
        enabled: true
        force: true
    application:
      name: boot-service
    redis:
      database: 0
      host: 127.0.0.1
      port: 6379
      password:
  #  database: 12
  #  host: r-2zevomgbwktynibydfpd.redis.rds.aliyuncs.com
  #  port: 6379
  #  password: iF4(pZ2!wF9%uV6@
    activiti:
      database-schema-update: false
    datasource:
      url: jdbc:mysql://rm-2zeo2635t3c592h2ywo.mysql.rds.aliyuncs.com:3306/estate?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8
      username: estate
      password: MySQL57@123
      type: com.alibaba.druid.pool.DruidDataSource
      driver-class-name: com.mysql.cj.jdbc.Driver
      druid:
        initial-size: 5
        max-active: 20
        min-idle: 5
        max-wait: 60000
  
  eureka:
    client:
      enabled: false
  
  feign:
    client:
      config:
        default:
          connect-timeout: 10000
          read-timeout: 20000