我有点好奇在单个get请求中将100多个请求参数映射为请求参数而不使用任何复杂对象。
实施例
public ResponseEntitiy<> getCustomerDetails (String params...)
有没有很酷的方法来实现这一点,而无需逐一编写。
答案 0 :(得分:2)
解释“酷”是非常主观的。
如果您暗示有一种映射请求参数的隐式方法,那么使用Map<String, String>
可能是一个合理的解决方案:
public ResponseEntity<> getCustomerDetails
(@RequestParam Map<String, String> params) {}