To make this task easy, it seems that put all your configuration in one place could be a good idea. In fact, it is. When your services are starting up, one of the things that they will do first is to ask for its configuration.
In the next picture you can see the basic workflow of this communication.
Configuration service
To do that, we are going to use Spring Cloud config support. First of all, we need to create a configuration service, that it will expose a Rest API to be able to do the communication that is showed in the picture above. To achieve that is so simple like add in your pom.xml the spring-cloud-config-server dependency as follows:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-config-server</artifactId> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// it indicates where is the git repository that contains all your configuration files | |
spring.cloud.config.server.git.uri=/Users/gerard/Documents/workspace_gerard/app_configuration | |
server.port=8888 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@EnableConfigServer | |
@SpringBootApplication | |
public class ConfigServerApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(ConfigServerApplication.class, args); | |
} | |
} |
Client service
Now we are going to do a demo service and configure it as a client of our configuration service.
First of all, to configure a client of the configuration service you have to add the follow dependency in your pom.xml :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.springframework.cloud</groupId> | |
<artifactId>spring-cloud-starter-config</artifactId> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.application.name=example-service | |
spring.cloud.config.uri=http://localhost:8888 |
Now when our service_1 is starting, it will ask to configuration service for its configuration before configure the Spring application context.
Then we can create a Rest service which accesses to one property (message.hello) provided by the configuration service.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RestController | |
@RequestMapping("/example") | |
@RefreshScope | |
public class ExampleService { | |
@Value("${message.hello}") | |
private String message; | |
@RequestMapping(method = RequestMethod.GET) | |
public String getExample() { | |
return message; | |
} | |
} |
Ok, we have the work done. But we can improve our solution, with Spring Actuator. If we annotate our Rest service with the annotation @RefreshScope, Spring Actuator can refreshes this bean, and then you can reload the configuration without restart your backend service. Let's see how.
Add the dependency :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-actuator</artifactId> | |
</dependency> |
After that make sure your class is annotated with @RefreshScope. Finally your can refresh your beans using the endpoints that exposes Spring Actuator in this way:
curl -d {} http://localhost:8080/refresh
And that is all. I hope you found it interesting. See you in the next post.
You can find all the code in the listed links: