在Spring Boot中,可以使用@Value注解来读取配置文件中的值。具体步骤如下:
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;
}
}
通过以上步骤,就可以在Spring Boot中读取配置文件中的属性值了。