的名單我開始繪製字符串的集合:Spring MVC的:GET複雜的對象
/abc?type=x,y,z
,我繪製了一組枚舉
@RequestParam(value = "type") Set<MyEnum> types
現在我想補充另一參數分配給每種類型。例如像:
/abc?type=x:withProperty1,y:withProperty2,z:withProperty3
,並且理想地映射到某個容器
@RequestParam(value = "type") Set<MyContainer> containers
,然後列表:
class MyContainer {
MyEnum type
String property
}
是否有可能與Spring MVC?或者,我所能做的只是將其綁定到兩個不同的列表:
/abc?type=x,y,z&properties=withProperty1,withProperty2,withProperty3
您能簡單介紹一下您的問題? –
我需要擴展現有的API並通過pojos列表 – piotrek
嗨:)它對你有用。我搜索了你.http://www.studytrails.com/frameworks/spring/spring-mvc-controller-input。 jsp –