Spring Cloud Config-属性解密不适用于客户端

时间:2018-02-19 05:05:11

标签: java spring-boot spring-cloud spring-cloud-config

我有一个配置客户端和配置服务器的基本设置(与本教程中的完全相同 - https://spring.io/guides/gs/centralized-configuration/

我的问题是我可以在服务器端解密属性并以纯文本形式发送它们但不能解密客户端而不是服务器端的属性。我使用对称加密,并且已经多次浏览了文档,但是无法在客户端工作时获得解密。

我在服务器端添加了以下属性,因此它不解密服务器端的属性 -

       spring.cloud.config.server.encrypt.enabled=false

我有一个application.yml文件,它有一个加密值 -

       name: '{cipher}hdshdghsgdhjsgdhsgdyassudyadssd2313wdw2e'

我尝试在客户端添加ENCRYPT_KEY / encrypt.key作为环境变量,系统属性。另外,尝试在application.properties和bootstrap.properties中添加相同内容,但客户端无法解密。

提前谢谢你。

配置客户端POM -

.......................

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>

     <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>

  <dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
<version>1.4.2.RELEASE</version>
</dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>


     <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>


<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
</dependency>

    <dependency>
    <groupId>com.auth0</groupId>
    <artifactId>java-jwt</artifactId>
    <version>3.3.0</version>
    </dependency>


    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-eureka-server</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Edgware.SR2</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>
</build>

..............

在配置服务器中,我添加了属性 -

           spring.cloud.config.server.encrypt.enabled=false

在config Client端,我在application.properties和bootstrap.properties中都添加了encrypt.key。

           encrypt.key=abcd

1 个答案:

答案 0 :(得分:4)

所以,这就解决了它。我添加了以下属性 -

          spring.cloud.config.server.encrypt.enabled=false

在配置服务器端的application.properties/yaml中。这是错的。它需要

位于bootstrap.properties/yaml内,而不是application.properties/yaml。

这可以明确地添加到文档中吗?

我确实在文档中看到了上面提到的属性,但没有看到应该添加的位置。

https://cloud.spring.io/spring-cloud-config/single/spring-cloud-config.html