Guest User

Untitled

a guest
Jul 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. @RestController
  2. @RequestMapping("/api/v1/note")
  3. public class NoteController {
  4.  
  5. @Autowired
  6. private final NoteService noteService;
  7.  
  8. @PostMapping
  9. public ResponseEntity<String> create(@Valid @RequestBody final NoteDto noteDto){
  10.  
  11. noteService.create(noteDto);
  12. return new ResponseEntity<>("sucess", HttpStatus.CREATED);
  13. }
  14. }
Add Comment
Please, Sign In to add comment