2017-03-21 5 views
0

私は春のブートフレームワークを使用しています.Application.propertiesファイルにHashMap構造のリストを定義し、そのJavaクラスでそのリストを使用できますか?ここでは、prorpertiesファイルの構造例を示します。春のブート時にapplication.propertiesファイル内のマップのリストを定義する

prefix: 
listProp1: 
    - listValue1 
    - listValue2 
    - listValue3 
listProp2: 
    - listValue1 
    - listValue2 
    - listValue3 
listProp3: 
    - listValue1 
    - listValue2 
    - listValue3 
プロパティで

答えて

0

使用JSONの構造は、ファイル

myMap="{[{"mapKey1": "mapVal1","mapKey2": "mapVal2",},{"mapKey11": "mapVal11","mapKey21": "mapVal22",}]}" 
関連する問題