我正在加载一个属性文件
@PropertySource("classpath:propFile.properties")
在此属性文件中,我有以下条目:
list.of.stg=a,b,c
此外,我这样做:
@Value("${list.of.stg}")public void setSomeList(...)
{in the method, the parameter has only the value a!!!}
你能告诉我一种达到完整价值观的方法吗
list.of.stg
谢谢!