Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 733 Bytes

README.md

File metadata and controls

46 lines (36 loc) · 733 Bytes

spring-boot

zuul

api gateway

eureka

service discovery

cloud-config

github config repository : https://github.com/mohalaoui/produit-config-repo.git

OpenFeign/feign

declaratif rest client

ribbon

load balancer client side

actuator

info

http://localhost:9104/actuator/info

result example :


{
  "build" : {
    "artifact" : "${project.artifactId}",
    "version" : "1.0.1-SNAPSHOT"
  },
  "app" : {
    "name" : "produit",
    "description" : "Demo project for Spring Boot",
    "version" : "1.0.1-SNAPSHOT"
  }
}

health

http://localhost:9104/actuator/health

result example:


{
  "status" : "UP"
}