@RefreshScope for entire project code example
Example: @RefreshScope for entire project
@RefreshScope@Configuration@ConfigurationProperties(prefix = "test")public class TestConfiguration { private String value; public String getValue() { return value; } public void setValue(String value) { this.value = value; }}