| 12345678910111213141516171819202122232425262728293031 |
- spring:
- profiles:
- active: dev
- application:
- name: admin-server
- security:
- user:
- name: admin
- password: select111***
- server:
- port: 8520
- tomcat:
- uri-encoding: UTF-8
- eureka:
- instance:
- leaseRenewalIntervalInSeconds: 10
- health-check-url-path: /actuator/health
- status-page-url-path: /actuator/info
- metadata-map:
- user.name: ${spring.security.user.name}
- user.password: ${spring.security.user.password}
- client:
- registryFetchIntervalSeconds: 5
- serviceUrl:
- defaultZone: http://${spring.security.user.name}:${spring.security.user.password}@192.168.0.181:8500/eureka/
- info:
- name: '@project.artifactId@'
- description: '@project.description@'
- version: '@project.version@'
- spring-boot-version: '@spring.boot.version@'
- spring-cloud-version: '@spring.cloud.version@'
|