I have a feign client with a method like below - it uses SpringQueryMap to send URL parameters.
@PostMapping(path="/api/services/helper/reduce")
ResponseEntity<List<String>> filterSupply(
@SpringQueryMap FilterTripParams params,
@RequestBody List<String> supply_list);
The problem is mapped field names are in the camel case while I expect them in the snake case since have spring.jackson.property-naming-strategy=SNAKE_CASE
Serialization and deserialization with the @RequestBody
work as expected.
I would consider it a bug.
Comment From: scottfrederick
@Pilipets Spring Cloud OpenFeign is a separate project. Please file an issue in that project's GitHub repository.
Comment From: Pilipets
Thanks for a quick response.