@RefreshScope 和 /refresh 不起作用
Posted
技术标签:
【中文标题】@RefreshScope 和 /refresh 不起作用【英文标题】:@RefreshScope and /refresh not working 【发布时间】:2018-08-24 22:47:35 【问题描述】:我尝试使用 Config Server 实现 spring 外部配置。当应用程序启动时,它第一次工作正常,但对属性文件的任何更改都没有反映。我尝试使用 /refresh 端点即时刷新我的属性,但它似乎不起作用。对此的任何帮助都会非常有帮助。
我尝试 POST 到 localhost:8080/refresh 但收到 404 错误响应。
下面是我的应用类的代码
@SpringBootApplication
public class Config1Application
public static void main(String[] args)
SpringApplication.run(Config1Application.class, args);
@RestController
@RefreshScope
class MessageRestController
@Value("$message:Hello default")
private String message;
@RequestMapping("/message")
String getMessage()
return this.message;
POM 文件是
<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-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</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>
和 bootstrap.properties
spring.application.name=xxx
spring.cloud.config.uri=https://xxxxxx.com
management.security.enabled=false
endpoints.actuator.enabled=true
【问题讨论】:
【参考方案1】:对于 Spring 2 及更高版本,端点现在是 /actuator/refresh
来自 cmets:
您确实需要在bootstrap.properties/bootstrap.yml
中设置management.endpoints.web.exposure.include=refresh
注意:如果您是 Spring-Cloud
的新手,并且不太确定 web.exposure
中的所有关键字可以包含哪些内容,您可以将其设置为 *
(management.endpoints.web.exposure.include=*
)全部暴露,您可以稍后了解端点及其限制。
【讨论】:
谢谢斯宾塞吉布。即使是上面提到的终点也没有更早的工作。我已将 spring-cloud-dependencies 版本更新为 Edgware.RELEASE 并将 spring-boot-starter-parent 更新为 1.5.10.RELEASE 并开始工作。猜猜这个问题是由于版本造成的。 没有。您需要设置 management.endpoints.web.exposure.include=* (或要启用的端点列表)management.endpoints.web.exposure.include=refresh
也可以。
@KalpeshSoni 这就是 spring cloud bus 的用途。
@user2683814 目前没有。我会删除@RefreshScope
并监听应用程序事件EnvironmentChangeEvent
,看看你想要的键是否在那里并手动处理更改。【参考方案2】:
在 bootstrap.properties 中添加属性“management.endpoints.web.exposure.include=*”并将 url 更改为 /actuator/refresh 以用于 2.0.0 以上的春季版本后,它对我有用 对于 spring 版本 1.0.5 url 是 /refresh
【讨论】:
除了这个 S/O 帖子之外,它还记录在哪里? @acidnbass 详细信息文档位于docs.spring.io/spring-boot/docs/current/reference/html/…【参考方案3】:对于 YAML 文件,属性的值需要用双引号括起来:
# Spring Boot Actuator
management:
endpoints:
web:
exposure:
include: "*"
注意:确保您为此属性使用正确的 endpoints 关键字(带有 's'),只要它存在于另一个没有 's' 的属性:“management.endpoint.health... ." .
【讨论】:
【参考方案4】:如果您在接受 SPRING 2.0 中的 formurlencoded 时遇到问题>,请使用:
curl -H "Content-Type: application/json" -d http://localhost:port/actuator/refresh
代替:
curl -d http://localhost:port/refresh
在 SPRING 1 中被接受。*
【讨论】:
以上是关于@RefreshScope 和 /refresh 不起作用的主要内容,如果未能解决你的问题,请参考以下文章
Spring Cloud @RefreshScope 原理分析:代理类调用流程
Spring Cloud @RefreshScope 原理分析:扫描 Bean 定义