Files
java-tutorials/spring-cloud/README.md
T

22 lines
1.5 KiB
Markdown
Raw Normal View History

2016-09-01 14:03:17 +02:00
## The Module Holds Sources for the Following Articles
- [Quick Intro to Spring Cloud Configuration](http://www.baeldung.com/spring-cloud-configuration)
2016-09-26 17:17:07 +02:00
Spring Cloud Config is Springs client/server approach for storing and serving distributed configurations across multiple applications and environments.
In this write-up, well focus on an example of how to setup a Git-backed config server, use it in a simple REST application server and setup a secure environment including encrypted property values.
2016-09-01 14:03:17 +02:00
- [Introduction to Spring Cloud Netflix Eureka](http://www.baeldung.com/spring-cloud-netflix-eureka)
2016-09-26 17:17:07 +02:00
In this article, well introduce client-side service discovery via “Spring Cloud Netflix Eureka“.
Client-side service discovery allows services to find and communicate with each other without hardcoding hostname and port. The only fixed point in such an architecture consists of a service registry with which each service has to register.
2018-01-23 09:23:32 +01:00
### Relevant Articles:
2016-09-01 14:03:17 +02:00
- [Intro to Spring Cloud Netflix - Hystrix](http://www.baeldung.com/spring-cloud-netflix-hystrix)
2016-09-26 17:17:07 +02:00
- [Dockerizing a Spring Boot Application](http://www.baeldung.com/dockerizing-spring-boot-application)
2018-04-11 11:33:18 +06:00
- [Instance Profile Credentials using Spring Cloud](http://www.baeldung.com/spring-cloud-instance-profiles)
2018-05-23 20:25:32 +05:30
- [Running Spring Boot Applications With Minikube](http://www.baeldung.com/spring-boot-minikube)
2019-03-18 18:36:42 +08:00
- [Introduction to Spring Cloud OpenFeign](https://www.baeldung.com/spring-cloud-openfeign)
2018-12-16 16:25:49 +02:00