Hi all,
I would like to simplify my JSP's even further by transparently including them. For instance, this is the line I would like to remove:
<%@ include file="/jsp/common/include.jsp"%>
The include.jsp file basically declares all the tag libraries I am using. I am running this on WebSphere 6.0.2 I believe and have already tried this configuration:
<!-- Include this for every JSP page so we can strip an extra line from the JSP -->
<jsp-config>
<jsp-property-group>
<url-pattern>*.htm</url-pattern>
<!--<include-prelude>/jsp/common/include.jsp</include-prelude>-->
<include-coda>/jsp/common/include.jsp</include-coda>
</jsp-property-group>
</jsp-config>
Both the include-prelude and include-coda did not work.
I was reading that other WebSphere users were not able to get this up and running; however, tomcat users were able to.
Please advise.
Thanks, Walter