Issue
Can someone provide some idea to inject all dynamic keys and values from property file and pass it as Map
to DBConstants
class using Setter Injection with Collection.
Keys are not known in advance and can vary.
// Example Property File that stores all db related details
// db.properties
db.username.admin=root
db.password.admin=password12
db.username.user=admin
db.password.user=password13
DBConstants
contains map dbConstants for which all keys and values need to be injected.
Please provide bean definition to inject all keys and values to Map dbConstants.
public class DBConstants {
private Map<String,String> dbConstants;
public Map<String, String> getDbConstants() {
return dbConstants;
}
public void setDbConstants(Map<String, String> dbConstants) {
this.dbConstants = dbConstants;
}
}
Solution
You can create PropertiesFactoryBean with your properties file and then inject it with @Resource annotation where you want to use it as a map.
@Bean(name = "myProperties")
public static PropertiesFactoryBean mapper() {
PropertiesFactoryBean bean = new PropertiesFactoryBean();
bean.setLocation(new ClassPathResource("prop_file_name.properties"));
return bean;
}
Usage:
@Resource(name = "myProperties")
private Map<String, String> myProperties;
Answered By - Monzurul Shimul
Answer Checked By - David Goodson (JavaFixing Volunteer)