没有 Spring 云配置服务器的 RefreshScope 运行时配置

RefreshScope Runtime Configuration Without Spring Cloud Config Server

是否可以通过 POST rest api /刷新调用刷新 属性(api-url) 而无需设置spring 云配置服务器和 spring 云配置客户端设置。

for.e.g Consumer.java

@Service
public class Consumer {

@value(${api-url})
private String apiUrl;

api-url 现在正在从 application.yml 读取。我想在运行时更改 api-url 而无需重新启动服务器。

可以在spring开机吗?

是的,只包含 spring 云启动器

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.2.RELEASE</version>
</parent>
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.RELEASE</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter</artifactId>
    </dependency>
</dependencies>