Open jiangchuan1220 opened 7 years ago
Try to add annotation RefreshScope, like this.
@Component
@RefreshScope
public class HelloWorldService {
@Value("${name}")
private String name;
public String getHelloMessage() {
return "Hello " + this.name;
}
}
In the sample, it just read the value of name from application.properties, instead of from zookeeper. Did you miss some configurations?