123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- api.version: api/v1/truckTms
- spring:
- profiles:
- include: ${SPRING_PROFILES:prod}
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- # serialization: {WRITE_DATES_AS_TIMESTAMPS: true}
- messages:
- basename: message
- encoding: UTF-8
- mvc:
- static-path-pattern:
- #eureka设置
- eureka:
- client:
- service-url:
- defaultZone: http://root:root@${EUREKA_HOST:172.16.33.161}:${EUREKA_PORT:8081}/eureka/
- instance:
- prefer-ip-address: true
- status-page-url: http://${spring.cloud.client.ip-address}:${server.port}/swagger-ui.html#/
- instance-id: ${spring.cloud.client.ip-address}:${server.port}
- genxml:
- pth: com/a
- cache:
- level: 2
- redis:
- host: 10.10.50.28
- port: 6379
- pwd: 123456
- project:
- prefix: sysmanage
- pool:
- maxTotal: 8
- maxWaitMillis: 1000
- maxIdle: 8
- cache:
- time: 864000000
- database: 0
- #自定义配置Redis相关配置
- prefix:
- order: order
- line: line
- suffix: end
- str:
- tengxun:
- key: WDTBZ-A5VKJ-UDLFI-KYJY6-WTP2S-A6B4Y
- ZhongJiaoXingLu:
- cid: 2667ca1f-e003-4822-b4c1-f25561c27f31
- srt: 3dbdc182-b235-4c33-be30-88c0fe8999c5
- user: 695b3735-9d65-4106-98f9-5f2181b40fb5
- pwd: fQBac3J090gK4L52a73qM821LF790H
- #停车
- parkMins: 60
- #离线时长
- outMins : 10
- #路线偏移时长
- abnMins: 60
- #处理类型type=1 异常线路预警
- #type=2 异常线路预警
- #+停车
- #type=3 异常线路预警
- #+离线
- #type=4 异常线路预警
- #+停车+离线
- type: 4
- mybatis:
- type-aliases-package: com.steerinfo.dil.model
- mapper-locations: classpath:com/steerinfo/dil/mapper/*.xml
- configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapUnderscoreToCamelCase: true
- call-setters-on-nulls: true
|