i have 3 pages:
xml.jsp : produces dynamic xml-data from a database
transform.xsl : xslt-stylesheet
output.jsp : html-output using JSTL
"output.jsp" looks like this:
<%@taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
<%@taglib prefix="x" uri="http://java.sun.com/jstl/xml"%>
<html>
<body>
<c:import url="/xml.jsp" var="xml"/>
<c:import url="/transform.xsl" var="xslt"/>
<x:transform xml="${xml}" xslt="${xslt}"/>
</body>
</html>
the code DOES work with resin but:
everytime i call output.jsp resin triggers a recompile of the page and that is a real performance killer.
tomcat does not show this odd behaviour.
i really like resin (excellent performance, easy configuration) so i would not like to be forced to switch to another servlet-engine (=tomcat).
is this a resin issue or my fault???
thanks,
flo