habuma / spring-in-action-5-samples

Home for example code from Spring in Action 5.
Apache License 2.0
1.21k stars 1.04k forks source link

Chapter 2: Listing 2.4 Handling POST requests with @PostMapping: Design not found #126

Open ChrisPerezLebron opened 1 year ago

ChrisPerezLebron commented 1 year ago

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"; }