21 lines
716 B
Markdown
21 lines
716 B
Markdown
// Refer to document: https://github.com/nacos-group/nacos-examples/tree/master/nacos-spring-cloud-example/nacos-spring-cloud-config-example
|
|
package com.alibaba.nacos.example.spring.cloud.controller;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@RestController
|
|
@RequestMapping("/config")
|
|
@RefreshScope
|
|
public class ConfigController {
|
|
|
|
@Value("${useLocalCache:false}")
|
|
private boolean useLocalCache;
|
|
|
|
@RequestMapping("/get")
|
|
public boolean get() {
|
|
return useLocalCache;
|
|
}
|
|
} |