SpringCloud使用spring-cloud-config-monitor自动刷新消息总线的配置。它使用github的webhook。完成每个更新配置后,请求的结果为: github webhook response,但是,仅在config-server中更新配置,而不会更新config-client,并且使用的配置类带有@RefreshScope注释。是什么原因?
BeanClass:
@Data
@ConfigurationProperties(prefix = "book")
@Component
@RefreshScope
public class BookConfig implements Serializable {
private Integer max;
private Integer min;
private String author;
private List<String> bookList;
}