无法使用“http://localhost:9001/refresh”刷新配置文件。如果我重新启动客户端应用程序,更新的配置将正常加载。以下是我用来测试相同内容的简单rest控制器。刷新是使用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>
4条答案
按热度按时间zfycwa2u1#
应在pom.xml中添加执行器依赖项以使用。
通过在www.example.com或bootstrap.properties中添加以下条目来包括刷新终结点application.properties。
呼叫重新整理端点以重新载入属性,而不重新启动应用程序。http://localhost:8080/actuator/refresh(使用http post方法,而不是get)
@ConfigurationProperties -将使用执行器刷新调用本身重新加载各自属性
@Value -将在启动时加载属性,不会使用刷新调用重新加载-若要重新加载用@Value注解属性,您需要,
zhte4eai2#
我在another stack overflow question中找到了答案。
在我的例子中,我必须设置属性
这将启用“/actuator/refresh”url(注意执行器部分!),并添加一个类
它有一个setProperty方法,由“refresh”调用。它从一个git仓库中获取我的加密属性(在我的客户端的www.example.com中的encrypted. application.properties),并使用我也在运行的springconfig服务器解密。然后它设置这个类中的值。
mfpqipee3#
只需检查,您的配置客户端已设置了该属性
然后运行POST刷新请求(Not GET)
祝你好运!
hgc7kmma4#
重新整理端点包含在致动器中。请新增致动器相依性,并尝试使用“http://localhost:9001/actuator/refresh“端点。