Blame view

cloud/search_xiaoan/src/main/resources/application.yml 650 Bytes
5efb4092   陈杰   微耕服务 嵌入分布式
1
2
3
4
5
6
server:
  port: 7778
spring:
  application:
    name: xiaoanSearch
  datasource:
16f6cb8b   陈杰   考勤推送
7
8
9
    username: SZJXTUSER
    password: xst200919
    url: jdbc:sqlserver://60.190.202.57:14333;database=xiaoanhxy
e92e5a92   陶汉栋   增加网关负载
10
11
12
    driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
##mybatis
mybatis:
5efb4092   陈杰   微耕服务 嵌入分布式
13
14
15
16
17
18
19
20
21
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.sincere.xianaoSearch.model
  check-config-location: true

eureka:
  instance:
    hostname: localhost
    lease-expiration-duration-in-seconds: 60
    lease-renewal-interval-in-seconds: 10
e7154f2b   陈杰   日志
22
  client:
5efb4092   陈杰   微耕服务 嵌入分布式
23
24
    service-url:
      defaultZone: http://localhost:8761/eureka/,http://localhost:8762/eureka/
e7154f2b   陈杰   日志

5efb4092   陈杰   微耕服务 嵌入分布式