I want on all pages BUT ONE (header.jsp) to include-coda like in this code:
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<include-coda>footer.jsp</include-coda>
I just don’t get how I can limit the Pattern to exclude header.jsp
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use a more specific
url-patternwhich doesn’t cover theheader.jsp. E.g. put those JSPs in a folder and use/foldername/*asurl-patterninstead. Or, give the JSP a different extension so that it doesn’t match theurl-pattern, e.g.header.jspf(JSP fragment).