Blame view

src/main/resources/application.yaml 678 Bytes
ec7f8a5d   陈杰   first
1
2
3
4
5
6
server:
  port: 9903
spring:
  application:
    name: wechatBusiness
  datasource:
eca46c74   陈杰   1
7
8
9
10
11
12
    username: SZJXTUSER
    password: xst200919
    url: jdbc:sqlserver://60.190.202.57:14333;database=wechatbusiness
    driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver

  jackson:
ec7f8a5d   陈杰   first
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8

#  cache:
#    type: redis
#  redis:
#    host: 127.0.0.1
#    port: 6379
#    password:
#    lettuce:
#      pool:
#        max-active: 8
#    database: 0
##mybatis
mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.sincere.wechatBusiness.model

logging:
f318719c   louyao   渠道商后台
32
  level:
ec7f8a5d   陈杰   first
33
    com.sincere.wechatBusiness.mapper: debug
f318719c   louyao   渠道商后台