Search Tutorials


Spring Cloud Config Hello World Example | JavaInUse

Spring Cloud Config Simple Example

In this post we implement Spring Cloud Config Server.

Spring Cloud - Table Of Contents

Microservice Registration and Discovery with Spring cloud using Netflix Eureka- Part 1. Microservice Registration and Discovery with Spring cloud using Netflix Eureka - Part 2. Microservice Registration and Discovery with Spring cloud using Netflix Eureka - Part 3. Microservice Registration and Discovery with Spring cloud using Netflix Eureka - Part 4. Spring Cloud- Netflix Eureka + Ribbon Simple Example Spring Cloud- Netflix Eureka + Ribbon + Hystrix Fallback Simple Example Spring Cloud- Netflix Hystrix Circuit Breaker Simple Example Spring Cloud- Netflix Feign REST Client Simple Example Spring Cloud- Netflix Zuul +Eureka Simple Example Spring Cloud Config Server using Native Mode Simple Example Spring Cloud Config Server Using Git Simple Example Spring Boot Admin Simple Example Spring Cloud Stream Tutorial - Publish Message to RabbitMQ Simple Example Spring Cloud Stream Tutorial - Consume Message from RabbitMQ Simple Example Spring Cloud Tutorial - Publish Events Using Spring Cloud Bus Spring Cloud Tutorial - Stream Processing Using Spring Cloud Data Flow Spring Cloud Tutorial - Distributed Log Tracing using Sleuth and Zipkin Example Spring Cloud Tutorial - Spring Cloud Gateway Hello World Example Spring Cloud Tutorial - Spring Cloud Gateway Filters Example Spring Cloud Tutorial - Spring Cloud Gateway + Netflix Eureka Example Spring Cloud Tutorial - Spring Cloud Gateway + Netflix Eureka + Netflix Hystrix Example Spring Cloud Tutorial - Secure Secrets using Spring Cloud Config + Vault Example

Video

This tutorial is explained in the below Youtube Video.

What is Spring Cloud Config ?Need for it?

Spring Cloud Config provides server and client-side support for externalized configuration in a distributed system. With the Config Server you have a central place to manage external properties for applications across all environments.

Mostly in all our previous tutorials we were creating the modules as follows-
Spring Cloud Config Tutorial
Modules can have common global properties which are repeated in all the modules. For example we have have properties related to Database, Messaging Queues etc. For example in our employee-consumer and employee-producer we are having the following property for registering to Eureka Server.
eureka.client.serviceUrl.defaultZone=http://localhost:8090/eureka
We can externalize this property using Spring Cloud Config.
Spring Cloud Config Example

How Spring Cloud Config Works?

Spring Cloud Config Server can be either configured in following 2 ways-
  • Using Local File System - Properties to be externalized are stored in the local file system of the Spring Cloud Config Server.
    Externalize Properties Using Spring Cloud Example
  • Using GIT Repo - Properties to be externalized are stored in the GIT Repo.
    Externalize Properties Using Spring Cloud and GIT Repo



We will be looking at configuration using local file system. In the next tutorial we will implement Spring Cloud Config Server using GIT Repo.

Lets Begin-

We will be making use of the employee-producer and the eureka-server code we developed in a previous tutorial.
In this tutorial we will be-
1. We will be creating a new module name employee-config-server having the externalized Eureka registration property.
2. Next we will the make code changes to the employee-producer module to get the required Eureka registration property from the employee-config-server.
  • We will create a maven project named as employee-config-server The project structure for this module will be as follows-

    Externalize Properties Using Spring Cloud Eclipse
    The pom.xml will be as follows with the spring-cloud-config-server.
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    	<modelVersion>4.0.0</modelVersion>
    
    	<groupId>com.javainuse</groupId>
    	<artifactId>employee-config-server</artifactId>
    	<version>0.0.1-SNAPSHOT</version>
    	<packaging>jar</packaging>
    
    	<name>employee-config</name>
    	<description>Demo project for Spring Boot</description>
    
    	<parent>
    		<groupId>org.springframework.boot</groupId>
    		<artifactId>spring-boot-starter-parent</artifactId>
    		<version>1.4.1.RELEASE</version>
    		<relativePath /> <!-- lookup parent from repository -->
    	</parent>
    
    	<properties>
    		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    		<java.version>1.8</java.version>
    	</properties>
    
    	<dependencies>
    		<dependency>
    			<groupId>org.springframework.cloud</groupId>
    			<artifactId>spring-cloud-config-server</artifactId>
    		</dependency>
    	</dependencies>
    
    	<dependencyManagement>
    		<dependencies>
    			<dependency>
    				<groupId>org.springframework.cloud</groupId>
    				<artifactId>spring-cloud-dependencies</artifactId>
    				<version>Camden.SR6</version>
    				<type>pom</type>
    				<scope>import</scope>
    			</dependency>
    		</dependencies>
    	</dependencyManagement>
    
    	<build>
    		<plugins>
    			<plugin>
    				<groupId>org.springframework.boot</groupId>
    				<artifactId>spring-boot-maven-plugin</artifactId>
    			</plugin>
    		</plugins>
    
    		<resources>
    			<resource>
    				<filtering>true</filtering>
    				<directory>src/main/resources</directory>
    				<includes>
    					<include>*.properties</include>
    					<include>common-config/</include>
    				</includes>
    			</resource>
    		</resources>
    	</build>
    </project>
    
    Next define the properties in application.properties. The spring.profiles.active=native property tells the colfig module to look for the externalized properties locally.
    spring.profiles.active=native
    server.port=8888
    spring.cloud.config.server.native.search-locations=classpath:/common-config
    

    Next create a folder named common-config, and inside it create the application.properties. This is where we will store the global common properties to be used by other microservices.
    eureka.client.serviceUrl.defaultZone=http://localhost:8090/eureka
    

    Finally we annotate the Spring Boot Main class with @EnableConfigServer.With this the module will act as a config server.
    package com.javainuse.employeeconfig;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.config.server.EnableConfigServer;
    
    @SpringBootApplication
    @EnableConfigServer
    public class EmployeeConfigApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(EmployeeConfigApplication.class, args);
    	}
    }
    
  • Code changes for employee-producer

    The changes we make for the consumer module are
    • Add the Spring Cloud Server Config dependency in the pom.xml
      The pom.xml will be as follows-
      <?xml version="1.0" encoding="UTF-8"?>
      <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      	<modelVersion>4.0.0</modelVersion>
      
      	<groupId>com.javainuse</groupId>
      	<artifactId>employee-producer</artifactId>
      	<version>0.0.1-SNAPSHOT</version>
      	<packaging>jar</packaging>
      
      	<name>SpringBootHelloWorld</name>
      	<description>Demo project for Spring Boot</description>
      
      	<parent>
      		<groupId>org.springframework.boot</groupId>
      		<artifactId>spring-boot-starter-parent</artifactId>
      		<version>1.4.1.RELEASE</version>
      		<relativePath /> <!-- lookup parent from repository -->
      	</parent>
      
      	<properties>
      		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
      		<java.version>1.8</java.version>
      	</properties>
      
      	<dependencies>
      		<dependency>
      			<groupId>org.springframework.cloud</groupId>
      			<artifactId>spring-cloud-starter-config</artifactId>
      		</dependency>
      		
      		<dependency>
      			<groupId>org.springframework.boot</groupId>
      			<artifactId>spring-boot-starter-web</artifactId>
      		</dependency>
      
      		<dependency>
      			<groupId>org.springframework.cloud</groupId>
      			<artifactId>spring-cloud-starter-eureka</artifactId>
      		</dependency>
      		
      	</dependencies>
      
      	<dependencyManagement>
      		<dependencies>
      			<dependency>
      				<groupId>org.springframework.cloud</groupId>
      				<artifactId>spring-cloud-dependencies</artifactId>
      				<version>Camden.SR6</version>
      				<type>pom</type>
      				<scope>import</scope>
      			</dependency>
      		</dependencies>
      	</dependencyManagement>
      
      
      	<build>
      		<plugins>
      			<plugin>
      				<groupId>org.springframework.boot</groupId>
      				<artifactId>spring-boot-maven-plugin</artifactId>
      			</plugin>
      		</plugins>
      		
      		<resources>
      			<resource>
      				<filtering>true</filtering>
      				<directory>src/main/resources</directory>
      				<includes>
      					<include>*.properties</include>
      				</includes>
      			</resource>		
      		</resources>	
      	</build>
      
      </project>
      
    • Remove the Eureka property from the employee producer module.
    Next start the modules in following sequence-
    • employee-config-server
    • eureka-server
    • employee-producer
    On running the employee-producer we get the output as follows-
    Externalize Properties Using Spring Cloud Eureka Example
    The employee-producer module gets the eureka properties from the employee-config-server module and starts successfully.

Download Source Code

Download it -
Employee Config Server
Employee Producer With Config Server
Eureka Server