[this post originally published here on Oct 27, 2019] In this post, there will be a demonstration of how to integrate AWS Parameter store with the spring boot application. So instead of placing all application configuration properties into application.properties file, we’ll store everything in the AWS Parameter store. First start a gradle java project will… Continue reading Spring Boot with AWS parameter store
Author: Ashok
Using etcd as property manager with Spring boot
What is etcd ? From official site, “etcd is a strongly consistent, distributed key-value store that provides a reliable way to store data that needs to be accessed by a distributed system”. The most obvious use case for etcd is, using etcd as fault tolerant property manager for distributed applications and its being by kubernetes.