cachespec.xml entry to exclude the child jsp's within the parent jsp.
- consume-subfragments tells the cache to store fragments
- <exclude> allows fragments to explicitly not be cached
- fragment can be excluded from the rules of the parent by using the do-not-consume property.
<class>servlet</class>
<name>/parent.jsp</name>
<property name="consume-subfragments">true
<exclude>/child1.jsp</exclude>
<exclude>/child2.jsp</exclude>
<exclude>/child3.jsp</exclude>
</property>
<property name="do-not-consume">true</property>
<property name="save-attributes">false</property>
<property name="store-cookies">false</property>
<property name="EdgeCacheable">false</property>
<cache-id>
<component id="storeId" type="parameter">
<required>true</required>
</component>
<component id="langId" type="parameter">
<required>true</required>
</component>
<component id="partNumber" type="parameter">
<required>true</required>
</component>
</cache-id>
</cache-entry>