Closed malte-baumann closed 7 months ago
I believe the Example of an RestController in the README File contains a wrong annotation.
What it says:
@GetMapping public String feature(@RequestMapping @Context(name = "name") final String name) { return featureDemoService.getDemoString(name); }
What it should say:
@GetMapping public String feature(@RequestParam @Context(name = "name") final String name) { return featureDemoService.getDemoString(name); }
Thank you for raising and fixing this @malte-baumann! Your PR has been approved, feel free to merge!
Thank you @malte-baumann, we merged your PR and are closing this issue!
I believe the Example of an RestController in the README File contains a wrong annotation.
What it says:
What it should say: