All Downloads are FREE. Search and download functionalities are using the official Maven repository.

c.spring-boot-admin-sample-zookeeper.3.1.7.source-code.application.yml Maven / Gradle / Ivy

spring:
  application:
    name: zookeeper-example
  cloud:
    config:
      enabled: false
    zookeeper:
      connect-string: localhost:2181
      discovery:
        metadata:
          management.context-path: /foo
          health.path: /ping
          user.name: user
          user.password: password
  profiles:
    active:
      - secure

management:
  endpoints:
    web:
      exposure:
        include: "*"
      path-mapping:
        health: /ping
      base-path: /foo
  endpoint:
    health:
      show-details: ALWAYS

---
spring:
  config:
    activate:
      on-profile: insecure
---
spring:
  security:
    user:
      name: "user"
      password: "password"
  config:
    activate:
      on-profile: secure





© 2015 - 2025 Weber Informatics LLC | Privacy Policy