103104105106107108109110
} @MethodMapping(value = "/", httpMethod = HttpMethod.POST) public Person testMethodPost() { Person person = createTestPerson(); return person; }
212213214215216217218
return "testRequiredDefault"; } public static Person createTestPerson() { return new Person("Mary", "Smith", "m.smith@gmail.com"); }