June 2014
Beginner to intermediate
304 pages
7h 25m
English
We have done everything to roll out our checkout flow, but one last thing is pending, that is, creating all the views that need to be used in the view states of our checkout flow. In total, we have six view states in our flow definition (collectCustomerInfo, collectShippingDetail, orderConfirmation, InvalidCartWarning, thankCustomer, and cancelCheckout), so we need to create six JSP files. Let's create all of them:
collectCustomerInfo.jsp under the directory src/main/webapp/WEB-INF/flows/checkout/, and add the following code snippet into it and save it. In the following code snippet, I have skipped the <input> tags for some of the fields of the Customer domain object. ...