I know I can use the <f:viewParam>
tag to set GET request parameters in a managed bean. This works great when passing URL as:
mysite.com/products.xhtml?catId=growing-systems
But is there another mechanism to process URI addresses such as:
mysite.com/products.html#/growing-systems -OR-
mysite.com/products.html#/growing-systems/garden-tower-3370084_01
Where the search strings (parameters for all intents and purposes) are separated by dashes.
Thanks a lot in advance!!!