在Spring Boot中,可以使用@Value注解來(lái)讀取配置文件中的值。具體步驟如下:
myapp.name=My Application
myapp.version=1.0
@Component
public class MyAppProperties {
@Value("${myapp.name}")
private String name;
@Value("${myapp.version}")
private String version;
// 省略getter和setter方法
}
@RestController
public class MyController {
@Autowired
private MyAppProperties myAppProperties;
@GetMapping("/info")
public String getAppInfo() {
String info = "Name: " + myAppProperties.getName() + ", Version: " + myAppProperties.getVersion();
return info;
}
}
通過(guò)以上步驟,就可以在Spring Boot中讀取配置文件中的屬性值了。