6

在使用具有特殊字符的值通过配置服务器进行加密时,任何人都会遇到问题吗?

目前我正在这样做

curl http://localhost:8888/configser/config/encrypt -d eF345edo=

我还提到了这个https://github.com/spring-cloud/spring-cloud-config/issues/620并尝试如下

curl http://localhost:8888/configser/config/encrypt --data-urlencode eF345edo=

但是仍然没有成功加密那个'='符号。

提前致谢

4

1 回答 1

9

最后我从spring cloud config的官方文档中得到了解决:(特殊字符请参见TIP区域) http://cloud.spring.io/spring-cloud-config/spring-cloud-config.html#_encryption_and_decryption

curl命令得到最终结果:

curl -H "Content-Type: text/plain" http://localhost:8888/configser/config/encrypt -d eF345edo=

谢谢@Bond - Java 债券

感谢大家的帮助。

于 2017-03-24T02:19:37.763 回答