alfredodiaz / kata-zookeeper

Tests with zookeeper
7 stars 4 forks source link

Can not load value from zookeeper #1

Open jiangchuan1220 opened 7 years ago

jiangchuan1220 commented 7 years ago

In the sample, it just read the value of name from application.properties, instead of from zookeeper. Did you miss some configurations?

bigbangtomato commented 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;
    }

}