All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.legendscloud.nacos.controller.ConfigController Maven / Gradle / Ivy

There is a newer version: 2021.0.0-M2
Show newest version
package top.legendscloud.nacos.controller;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.GetMapping;
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;

    /**
     * http://localhost:8080/config/get
     */
    @GetMapping("/get")
    public boolean get() {
        return useLocalCache;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy