sadblack

Results 1 comments of sadblack

> 配置方式 > > ```java > @RestController > public class CommonSearchController { > @Value("${test.config:China}") > private String configStr; > > @GetMapping("/test") > public RestResponse test() { > return RestResponse.success(configStr); >...