GIVEN - A ````@RequestMapping```` with negated values in the params: ````@RequestMapping(value = "/", method = RequestMethod.GET, params = { "mrn", "!familyName", "!givenName" })```` WHEN - Viewing this in the UI THEN - It shows query parameters !familyName and !givenName that have required: true. The negated parameters should be omitted from the list of parameters.
GIVEN
@RequestMappingwith negated values in the params:@RequestMapping(value = "/", method = RequestMethod.GET, params = { "mrn", "!familyName", "!givenName" })WHEN
THEN