我尝试使用Config Server实现spring外部配置。它在应用程序启动时第一次正常工作,但没有反映对属性文件的任何更改。我尝试使用/刷新端点来动态刷新我的属性,但它似乎并没有起作用。任何有关这方面的帮助都会非常有帮助。
我尝试POSTing到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
答案 0 :(得分:7)
端点现在是/actuator/refresh
。
答案 1 :(得分:2)
在bootstrap.properties中添加属性“ management.endpoints.web.exposure.include = *”并将url更改为/ actuator / refresh(对于高于2.0.0的春季版本)后,它对我有用 对于春季版本1.0.5,URL为/ refresh
答案 2 :(得分:2)
对于 YAML 文件,该属性的值需要用双引号引起来:
# Spring Boot Actuator
management:
endpoints:
web:
exposure:
include: "*"
注意:确保此属性使用正确的 endpoints 关键字(带有's'),只要该属性存在于另一个不带有's'的属性中即可:“ management.endpoint.health ... ”。
答案 3 :(得分:0)
如果您在接受SPRING 2.0中的formurlencode时遇到问题,请使用:
curl -H“内容类型:application / json” -d {} http://localhost:port/actuator/refresh
代替:
curl -d {} http://localhost:port/refresh
已在SPRING 1中接受。*