一、系统配置文件
1.application.properties是新建springboot项目后默认得配置文件
配置的示例如下
server.port=8080 server.context-path=/girl
2.推荐使用application.yml的方式
配置的示例如下
server: port: 8082 context-path: /girl
二、YAML
三、实际应用
[email protected] 的用法
application.yml
server: port: 8082cupSize: Bage: 18content: "cupSize: ${cupSize}, age: ${age}"
HelloController中对应的注入方式
@RestControllerpublic class HelloController { @Value("${cupSize}") private String cupSize; @Value("${age}") private String age; @Value("${content}") private String content; @RequestMapping(value = "/hello", method = RequestMethod.GET) public String say (){ return cupSize+","+age+";"+content; }}
浏览器输出为B,18;cupSize: B, age: 18
2.
时间: 2024-10-07 21:36:07