Spring boot 配置客户端:刷新不起作用

问题描述 投票:0回答:5

无法使用“http://localhost:9001/refresh”刷新配置文件。 如果我重新启动客户端应用程序,更新的配置将正常加载。 以下是我用来测试相同的简单休息控制器。 使用curl命令'curl -d {} localhost:9001/refresh/'运行刷新,这会给出404错误。

@RestController
@RefreshScope
class ExampleController {

    @Value("${Message2}")
    private String message2 = "Hello World";

    @RequestMapping
    public String sayValue() {
        return message2;
    }
}

以下是我正在使用的pom.xml

<groupId></groupId>
<artifactId>MyConfigurationClient</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>MyConfigurationServer</name>
<description>Demo project for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.0.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
    <spring-cloud.version>Finchley.M8</spring-cloud.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
    </dependency>

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

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>${spring-cloud.version}</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>

<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

spring-boot configuration centralized
5个回答
8
投票

需要在pom.xml中添加Actuator依赖才能使用。

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

通过在 application.properties 或 bootstrap.properties 中添加以下条目来包含刷新端点。

management.endpoints.web.exposure.include=refresh

调用刷新端点重新加载属性,而无需重新启动应用程序。 http://localhost:8080/actuator/refresh(使用http post方法无法获取)

@配置属性 - 将通过执行器刷新调用本身重新加载相应的属性。

@价值 - 将在启动时加载属性,并且不会通过刷新调用重新加载。 - 要重新加载用 @Value 注释的属性,您需要,

  • 重新启动应用程序。
  • 也可以在不重启的情况下完成,只需在类上使用@RefreshScope(spring cloud config注解)进行注解,该类使用 @值。

0
投票

我在另一个堆栈溢出问题中找到了答案。

就我而言,我必须设置属性

management.endpoints.web.exposure.include=*
# management.endpoints.web.exposure.include=xyz

启用“/actuator/refresh”url(注意执行器部分!),并添加一个类

package here.org.your.put;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 *
 */
@Component
@ConfigurationProperties(prefix = "encrypted")
public class PropertyConfiguration {

  private String property;

  public String getProperty() {
    return property;
  }

  public void setProperty(String property) {
    this.property = property;
  }
}

其中有一个通过“刷新”调用的 setProperty 方法。它从 git 存储库获取我的加密属性(客户端的 application.properties 中的 cryptod.password),并使用我也在运行的 spring 配置服务器进行解密。然后它设置该类中的值。


0
投票

只需检查一下,您的配置客户端已设置属性

server.port: 8080
management.endpoints.web.exposure.include=*

然后运行POST刷新请求(不是GET)

curl --location --request POST 'http://localhost:8080/actuator/refresh'

祝你好运!


0
投票

对我有用的解决方案!

在客户端配置中,我更改了

spring.cloud.config.uri=http://localhost:8888/
spring.config.import=configserver:
(其中
configserver
是我的配置服务器的名称。)

application.properties 看起来像:

spring.application.name=myclient1
spring.config.import=configserver:
management.endpoints.web.exposure.include=*

配置类看起来像:

@ConfigurationProperties("greetings")
@RefreshScope
@Data
public class Config{
    String say;
}

Controller类看起来像:

@RestController
@AllArgsConstructor
public class MyController {
  private final Config config;

  @GetMapping
  String returnValue() {
    return config.getSay();
  }
}

依赖管理系统中确保,您已包含来自Spring初始化程序的以下2个依赖项。

最后,不要忘记调用刷新端点来更新您的属性。

http://localhost:8081/actuator/refresh


-1
投票

刷新端点包含在执行器中。请添加执行器依赖项并使用“http://localhost:9001/actuator/refresh”端点尝试此操作。

© www.soinside.com 2019 - 2024. All rights reserved.