MCPcopy Index your code
hub / github.com/OpenFeign/feign / queryMap

Method queryMap

form/src/test/java/feign/form/Server.java:121–125  ·  view source on GitHub ↗
(@RequestParam("filter") List<String> filters)

Source from the content-addressed store, hash-verified

119 }
120
121 @PostMapping("/query_map")
122 public ResponseEntity<Integer> queryMap(@RequestParam("filter") List<String> filters) {
123 var status = filters != null && !filters.isEmpty() ? OK : I_AM_A_TEAPOT;
124 return ResponseEntity.status(status).body(filters.size());
125 }
126
127 @PostMapping(path = "/wild-card-map", consumes = APPLICATION_FORM_URLENCODED_VALUE)
128 public ResponseEntity<Integer> wildCardMap(

Callers

nothing calls this directly

Calls 4

isEmptyMethod · 0.80
bodyMethod · 0.65
statusMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected