Posts tagged with Spring cloud

Featured image for "How to fix services registering as localhost on Eureka"
Java

How to fix services registering as localhost on Eureka

If you used Eureka before, you may have noticed that services sometimes register as localhost in stead of the prefered servers hostname. In this tutorial I'll explain why that happens and how to fix it.

Read more →
Featured image for "Using the Netflix stack with Spring boot: Zuul"
Java

Using the Netflix stack with Spring boot: Zuul

Spring boot has several integrations available for Netflix components such as Zuul. In this tutorial I'll demonstrate how Zuul can be used to handle several cross-cutting concerns on a network-based level, such as CORS headers and handling multipart requests.

Read more →
Featured image for "Configuration as a microservice"
Java

Configuration as a microservice

Decentralized configuration on the filesystem has its flawed. But what if you could provide configuration as a microservice with Git?

Read more →
Featured image for "Using the Netflix stack with Spring boot: Hystrix"
Java

Using the Netflix stack with Spring boot: Hystrix

What happens when something fails in an application and it keeps failing? In this article I'll show you how you can have more control using Hystrix.

Read more →
Featured image for "Using the Netflix stack with Spring boot: Ribbon"
Java

Using the Netflix stack with Spring boot: Ribbon

Last time, I gave a basic introduction into the concepts of microservices. In this tutorial we'll explore how Netflix helps us with calling microservices using Ribbon.

Read more →
Featured image for "Using the Netflix stack with Spring boot: Eureka"
Java

Using the Netflix stack with Spring boot: Eureka

When you talk about Java and microservices, chances are that you'll stumble upon the Netflix stack. In this example I'll use Spring boot with Eureka.

Read more →