我的配置类,我初始化hessian bean
@RefreshScope
@Component
public class SampleService {
@Autowired
Sample sample;
public String doRemoteOperation(String value){
return sample.doRemoteOperation(value);
}
}
我使用bean的示例组件类。
sample.hessian.url
从spring配置服务器检索 sample.hessian.url
。
但在更改{{1}}的值并调用"刷新"端点,自动连接的样本bean仍在尝试查找旧的url值。
我在这里做错了什么?