kimi
2020-02-10 0433821d269c0c248174af1a39ed574763add165
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
server:
  port: 8090
#url: jdbc:mysql://180.169.94.250:8306/data_admin?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC&nullCatalogMeansCurrent=true
base:
  file:
    path: d:/srs/scheme
  topic:
    path: d:/srs/topic
 
 
multipart:
  maxFileSize: 50Mb
  maxRequestSize: 50Mb
spring:
  devtools:
    restart:
      enabled: true
      additional-paths: src/main/java
 
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/srs?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC&nullCatalogMeansCurrent=true
    username: root
    password: 123456
 
  mvc:
    view:
      prefix: classpath:/templates/
      suffix: .html
 
 
 
mybatis-plus:
  mapper-locations: classpath:mapping/*.xml
  type-aliases-package: com.highdatas.srs.mapper
  global-config:
    db-config:
      column-underline: true
logging:
  level:
    com:
      highdatas:
       srs:
        mapper: DEBUG