使用 application.properties 中配置的属性,举例:@Value("${server.port}")

使用 application.properties 中配置的属性:@Value 注解。

@RestController
public class HelloWorldController {
    @Value("${server.port}")
    String port;

    @RequestMapping(value = "hi")
    public String hello(){
        return "hello world! I am from " + port;
    }
}

使用 application.properties 中配置的属性,举例:@Value("${server.port}")

上一篇:axios执行多个请求参数


下一篇:Android源码阅读技巧--查找开发者选项中显示触摸操作源码