123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- eureka:
- client:
- enabled: true
- healthcheck:
- enabled: true
- fetch-registry: true
- register-with-eureka: true
- instance-info-replication-interval-seconds: 10
- registry-fetch-interval-seconds: 10
- instance:
- appname: ms1
- instanceId: ms1:${spring.application.instance-id:${random.value}}
- lease-renewal-interval-in-seconds: 5
- lease-expiration-duration-in-seconds: 10
- status-page-url-path: ${management.context-path}/info
- health-check-url-path: ${management.context-path}/health
- metadata-map:
- zone: primary
- profile: ${spring.profiles.active}
- version: ${info.project.version}
- ribbon:
- eureka:
- enabled: true
- feign:
- hystrix:
- enabled: true
- hystrix:
- share-security-context: true
- management:
- security:
- roles: ADMIN
- context-path: /management
- info:
- git:
- mode: full
- health:
- mail:
- enabled: false
- spring:
- application:
- name: ms1
- jackson:
- serialization.write_dates_as_timestamps: false
- jpa:
- open-in-view: false
- hibernate:
- ddl-auto: none
- naming:
- physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
- implicit-strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
- messages:
- basename: i18n/messages
- mvc:
- favicon:
- enabled: false
- thymeleaf:
- mode: XHTML
- security:
- basic:
- enabled: false
- oauth2:
- resource:
- filter-order: 3
- server:
- session:
- cookie:
- http-only: true
- info:
- project:
- version:
- jhipster:
- async:
- core-pool-size: 2
- max-pool-size: 50
- queue-capacity: 10000
-
-
-
-
-
-
-
-
- mail:
- from: ms1@localhost
- swagger:
- default-include-pattern: /api/.*
- title: ms1 API
- description: ms1 API documentation
- version: 0.0.1
- terms-of-service-url:
- contact-name:
- contact-url:
- contact-email:
- license:
- license-url:
- ribbon:
- display-on-active-profiles: dev
- application:
|