我有一个 DTO,它看起来有点像这样:
class Response {
Long id;
Locale locale;
Map<Integer,QuestionResponse> questionResponses=new HashMap<Integer,QuestionResponse>();
...
}
但是我无法将 a 映射ColumnConfig
到地图条目的value
属性。questionResponses
例如,我想要这样的东西:
beanModel.get("questionResponses[15].value")
我可以从 get 方法中看到BeanModelData
,我应该能够获取 Map 的属性,但无法弄清楚语法。任何帮助将非常感激。