10

我尝试使用 Config Server 实现 spring 外部配置。当应用程序启动时,它第一次工作正常,但对属性文件的任何更改都没有反映。我尝试使用 /refresh 端点即时刷新我的属性,但它似乎不起作用。对此的任何帮助都会非常有帮助。

我尝试发布到 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
4

4 回答 4

28

端点现在/actuator/refresh适用于 Spring 2 及更高版本

从评论:

  • 您确实需要management.endpoints.web.exposure.include=refreshbootstrap.properties/bootstrap.yml

注意:如果您是新手Spring-Cloud并且不太确定所有关键字可以进入什么,web.exposure您可以将其设置为*( management.endpoints.web.exposure.include=*) 以使其全部公开,您可以稍后了解端点及其限制。

于 2018-03-19T17:47:36.440 回答
4

在 bootstrap.properties 中添加属性“management.endpoints.web.exposure.include = *”并将 url 更改为 /actuator/refresh 后,对于 2.0.0 以上的 spring 版本,它对我有用 对于 spring 版本 1.0.5,url 是 /刷新

于 2018-06-28T06:09:31.243 回答
3

对于YAML文件,属性的值需要用双引号括起来:

# Spring Boot Actuator
management:
  endpoints:
    web:
      exposure:
        include: "*"

注意:确保您为此属性使用正确的端点关键字(带有's'),只要它存在于另一个没有's'的属性:“management.endpoint.health....”。

于 2020-01-23T09:36:25.667 回答
0

如果您在接受 SPRING 2.0> 中的 formurlencoded 时遇到问题,请使用:

curl -H "Content-Type: application/json" -d {} http://localhost:port/actuator/refresh

代替:

curl -d {} http://localhost:port/refresh

在 SPRING 1.* 中被接受

于 2019-11-26T17:03:41.043 回答