CeDo
2021-04-14 c7b2b96e3f4e2fe91f5265385f9e1394baac8ccf
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
server:
  port: 8763
 
eureka:
  instance:
    preferIpAddress: true
  client:
    serviceUrl:
      defaultZone: http://${EUREKA_URL:localhost}:8761/eureka
 
spring:
  application:
    name: service-tp
  resources:
    static-locations: classpath:/static
  freemarker:
    template-loader-path: classpath:/static
    cache: false
    charset: utf-8
    check-template-location: true
    content-type: text/html
    expose-request-attributes: false
    expose-session-attributes: false
    request-context-attribute: request
    suffix: .html
 
feign:
  hystrix:
    enabled: true