Reactive Spring Query Parameters
问题 My Spring Reactive Web API should be able to filter based on query parameters but I'm struggling to get this right. GET /v1/address?type=business Should return all addresses of type 'business' in the system (just an example since I'm not posting the actual requirements). If the parameter is absent then just return all addresses. [ { "id" : 1, "type" : "business", "street" : "..."}, { "id" : 2, "type" : "business", "street" : "..."}, ... } I'm using Router functions to map the request: public