Skip to content

Instantly share code, notes, and snippets.

@namila007
Created March 31, 2019 16:52
Show Gist options
  • Save namila007/0183cdc51f6cebde6e1f228906f351b8 to your computer and use it in GitHub Desktop.
Save namila007/0183cdc51f6cebde6e1f228906f351b8 to your computer and use it in GitHub Desktop.
Valid body
@PostMapping
public ResponseWrapper<Author> createAuthor( @Valid @RequestBody Author author )
{
return new ResponseWrapper<>( authorMainService.add( author ), HttpStatus.OK );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment