spring boot post parameters null code example
Example: value receive null with post method in the java spring controller
public Greeting greeting(@RequestBody Person person) {
return new Greeting(counter.incrementAndGet(), String.format(template, person.getName()));
}