标签: spring spring-boot service properties
在Spring引导项目的服务层中访问上下文路径和其他默认属性的最佳方法是什么?
答案 0 :(得分:1)
访问任何属性的最佳方式是org.springframework.core.env.Environment对象。
org.springframework.core.env.Environment
@Autowired Environment environment;
使用此环境对象,您可以使用外部文件或application.properties文件或使用@PropertySource设置的属性来获取任何属性集
@PropertySource