Page 1 of 1

Understanding the flow

Posted: Wed Jul 22, 2015 12:46 pm
by Shanky
Hi,

When to broadleaf site is up I am navigated to homepage. When I click on any product I am directed to the product page. But there is no annotation on product controller. How are the mappings being done?

Re: Understanding the flow

Posted: Mon Jul 27, 2015 4:58 am
by phillipuniverse
ProductHandlerMapping, CategoryHandlerMapping, PageHandlerMapping. These 3 Spring HandlerMappings look up products/categories/pages by URL and then forward them to a controller.

Re: Understanding the flow

Posted: Tue Jul 28, 2015 7:24 am
by Shanky
phillipuniverse wrote:ProductHandlerMapping, CategoryHandlerMapping, PageHandlerMapping. These 3 Spring HandlerMappings look up products/categories/pages by URL and then forward them to a controller.


Thanks phillip