Package org.wgrus

Examples of org.wgrus.Order


  }

  @RequestMapping(method=RequestMethod.POST)
  public String placeOrder(@RequestParam String email, @RequestParam int quantity, @RequestParam String productId, Model model) {
    long orderId = orderIdCounter.getAndIncrement();
    Order order = new Order(orderId);
    order.setEmail(email);
    order.setQuantity(quantity);
    order.setProductId(productId);
    MessagingTemplate template = new MessagingTemplate(this.orderChannel);
    template.convertAndSend(order);
    model.addAttribute("orderId", orderId);
    return "order";
  }
View Full Code Here

TOP

Related Classes of org.wgrus.Order

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.