这篇文章写得很详细:https://blog.csdn.net/hry2015/article/details/72353994
将配置文件的属性注入容器
application.properties
#community
community.path.domain=http://localhost:8080
service
@Value("${community.path.domain}")
private String domain;
2024-01-10 13:15:22
这篇文章写得很详细:https://blog.csdn.net/hry2015/article/details/72353994
将配置文件的属性注入容器
application.properties
#community
community.path.domain=http://localhost:8080
service
@Value("${community.path.domain}")
private String domain;