liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
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
spring:
  application:
    name: attendance-center
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://192.168.1.173:3306/fs_attendance_ts?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false
    username: root
    password: c++java123
    hikari:
      minimum-idle: 5
      maximum-pool-size: 20
      connection-test-query: SELECT 1
  redis:
    host: 192.168.1.173
    port: 6379
    timeout: 5000
    lettuce:
      pool:
        min-idle: 0
        max-idle: 8
        max-active: 8
        max-wait: -1
  servlet:
    multipart:
      max-file-size: 100MB
      max-request-size: 100MB
  mvc:
    servlet:
      load-on-startup: 1
  aop:
    proxy-target-class: true
mybatis:
  type-aliases-package: com.cloud.attendance.model
  mapper-locations: classpath:/mybatis-mappers/*
  configuration:
    mapUnderscoreToCamelCase: true
server:
  port: 3695
imgHttpUrl:
  URLSTR: http://192.168.1.203/               #获取服务器图片的地址
logging:
  level:
    root: info
    com.cloud: debug
  file: logs/${spring.application.name}.log
es:
  es_network_host: 192.168.1.203
  es_network_http_port: 9200
  es_net_hosts: 192.168.1.203
c:
  server_ip_port: http://192.168.1.203:11111
fdfsImgUrl:
  server: http://192.168.1.203:80/
loginData:
  redUrl: 192.168.1.203
  redPort: 3694
deviceService:
  url: 192.168.1.203
  port: 3696