Guest User

Untitled

a guest
Oct 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @RestController
  2. public class RESTCustCtrl {
  3.  
  4. @Autowired
  5. private CustomerRepo customerRepo;
  6.  
  7. @RequestMapping(value = "sendStmt", method = RequestMethod.POST)
  8. public CustomerStatement custStmt(@RequestBody CustomerStatement customerStatement){
  9. customerRepo.save(customerStatement);
  10. return customerStatement;
  11. }
  12. }
  13.  
  14. public @ResponceBody CustomerStatement custStmt(CustomerStatement customerStatement)
Add Comment
Please, Sign In to add comment