プロパティファイルをロードしています
@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
ありがとうございました!