@RefreshScope 和/refresh 不工作
@RefreshScope and /refresh not working
我尝试使用配置服务器实现 spring 外部配置。它在应用程序启动时第一次运行良好,但未反映对属性文件的任何更改。我尝试使用 /refresh 端点来动态刷新我的属性,但它似乎不起作用。对此的任何帮助都会非常有帮助。
我尝试发布到 localhost:8080/refresh 但收到 404 错误响应。
下面是我的应用程序代码class
@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
Spring 2 和更大
的终点现在是 /actuator/refresh
来自评论:
- 您需要在
bootstrap.properties/bootstrap.yml
中设置 management.endpoints.web.exposure.include=refresh
注意: 如果您是 Spring-Cloud
的新手,并且不太确定所有关键字都可以放入 web.exposure
,您可以将其设置为 *
(management.endpoints.web.exposure.include=*
) 来公开所有内容,稍后您可以了解端点及其限制。
在 bootstrap.properties 中添加 属性 "management.endpoints.web.exposure.include=*" 并将上面的 spring 版本的 url 更改为 /actuator/refresh 后,它对我有用2.0.0
对于 spring 版本 1.0.5 url 是 /refresh
如果您在接受 SPRING 2.0> 中编码的 formurlencode 时遇到问题,请使用:
curl -H "Content-Type: application/json" -d {} http://localhost:port/actuator/refresh
而不是:
curl -d {} http://localhost:port/refresh
在 SPRING 1.*
中被接受
对于 YAML 文件,属性 的值需要用双引号引起来:
# Spring Boot Actuator
management:
endpoints:
web:
exposure:
include: "*"
注意:确保您为此 属性 使用正确的 endpoints 关键字(带有 's'),只要它存在于另一个 属性 没有 's' : "management.endpoint.health.... " .
我尝试使用配置服务器实现 spring 外部配置。它在应用程序启动时第一次运行良好,但未反映对属性文件的任何更改。我尝试使用 /refresh 端点来动态刷新我的属性,但它似乎不起作用。对此的任何帮助都会非常有帮助。
我尝试发布到 localhost:8080/refresh 但收到 404 错误响应。
下面是我的应用程序代码class
@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
Spring 2 和更大
的终点现在是/actuator/refresh
来自评论:
- 您需要在
bootstrap.properties/bootstrap.yml
中设置
management.endpoints.web.exposure.include=refresh
注意: 如果您是 Spring-Cloud
的新手,并且不太确定所有关键字都可以放入 web.exposure
,您可以将其设置为 *
(management.endpoints.web.exposure.include=*
) 来公开所有内容,稍后您可以了解端点及其限制。
在 bootstrap.properties 中添加 属性 "management.endpoints.web.exposure.include=*" 并将上面的 spring 版本的 url 更改为 /actuator/refresh 后,它对我有用2.0.0 对于 spring 版本 1.0.5 url 是 /refresh
如果您在接受 SPRING 2.0> 中编码的 formurlencode 时遇到问题,请使用:
curl -H "Content-Type: application/json" -d {} http://localhost:port/actuator/refresh
而不是:
curl -d {} http://localhost:port/refresh
在 SPRING 1.*
中被接受对于 YAML 文件,属性 的值需要用双引号引起来:
# Spring Boot Actuator
management:
endpoints:
web:
exposure:
include: "*"
注意:确保您为此 属性 使用正确的 endpoints 关键字(带有 's'),只要它存在于另一个 属性 没有 's' : "management.endpoint.health.... " .