Currently as per documentation, strict wildcard rule has to be followed for each URL path mapping-
<mapping path="/a" decorator="decorator.jsp"/>
<mapping path="/a/*" decorator="decorator.jsp"/>
Can we add this feature of mapping both parent-child in same configuration?
<mapping path="/a/*" decorator="decorator.jsp" includeParentPath = true/> \\to consider both \a and path after /a
<mapping path="/a/*" decorator="decorator.jsp" includeParentPath = false/> \\to consider only path after /a
Currently as per documentation, strict wildcard rule has to be followed for each URL path mapping-
<mapping path="/a" decorator="decorator.jsp"/><mapping path="/a/*" decorator="decorator.jsp"/>Can we add this feature of mapping both parent-child in same configuration?
<mapping path="/a/*" decorator="decorator.jsp" includeParentPath = true/> \\to consider both \a and path after /a<mapping path="/a/*" decorator="decorator.jsp" includeParentPath = false/> \\to consider only path after /a