Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. @RequestMapping("/add")
  2. public String addProduct(Model model,
  3. @RequestParam String name,
  4. @RequestParam String description,
  5. @RequestParam String imgUri,
  6. @RequestParam Double precio
  7. )
  8.  
  9.  
  10. {
  11.  
  12. Product product = new Product();
  13. product.setName(name);
  14. product.setDescription(description);
  15. product.setImgUri(imgUri);
  16. product.setPrecio(precio);
  17. DataHelper.addItem(product);
  18. initModel(model);
  19. return "hoteles";
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement