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