如何仅从属性文件加载特定关键字或行而不加载 java 中的完整属性文件
How to load specific keyword or line only from a properties file without loading full properties file in java
有什么方法可以只从属性文件加载特定类型的关键字吗?
我不想加载整个属性文件只需要加载特定的键匹配 lines.For 例如,我们有以下属性文件:
server.host=bharat.corp.com
server.user=kumar
server.pwd=password123
emp.name=M.W.Khan
emp.id=230989
emp.address=Birsingpur
在上面的属性中,我只想加载从 emp 开始的键,而不是加载所有 属性 包括服务器。
提前致谢。
在spring-boot
中你可以使用注释:
@Component
@ConfigurationProperties(prefix = "emp")
有什么方法可以只从属性文件加载特定类型的关键字吗? 我不想加载整个属性文件只需要加载特定的键匹配 lines.For 例如,我们有以下属性文件:
server.host=bharat.corp.com
server.user=kumar
server.pwd=password123
emp.name=M.W.Khan
emp.id=230989
emp.address=Birsingpur
在上面的属性中,我只想加载从 emp 开始的键,而不是加载所有 属性 包括服务器。
提前致谢。
在spring-boot
中你可以使用注释:
@Component
@ConfigurationProperties(prefix = "emp")