You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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