January 2018
Intermediate to advanced
414 pages
10h 29m
English
Sometimes we will have sensitive information in our configuration files, such as passwords, and we may not want them to be visible in plain text. The Spring Configuration Server allows us to cipher the data that we set in our configuration files.
First, let's modify our Configuration Server by adding a bootstrap.yml file under main/src/resources in our configuration server folder:
encrypt.key: "this_is_a_secret"spring: cloud: config: ...
Read now
Unlock full access