In the code below Design class is not found. I am assuming it was meant to be Taco design, not Design design?
@PostMapping
public String processDesign(Design design) {
// Save the taco design...
// We'll do this in chapter 3
log.info("Processing design: " + design);
return "redirect:/orders/current";
}
In the code below Design class is not found. I am assuming it was meant to be Taco design, not Design design?
@PostMapping public String processDesign(Design design) { // Save the taco design... // We'll do this in chapter 3 log.info("Processing design: " + design); return "redirect:/orders/current"; }