Try this in your web.xml:
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>tagpoolClassName</param-name>
<param-value>org.apache.jasper.runtime.PerThreadTagHandlerPool</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
Dmitry Beransky-3 wrote:
>
> Hi,
>
> I've noticed that there are two implementations of the tag pool:
> TagHandlerPool and PerThreadTagHandlerPool. I haven't been able to figure
> out how to tell Jasper to use the per-thread implementation. Any
> pointers?
>
>
> Thanks
> Dmitry
>
>
--
View this message in context:
http://www.nabble.com/alternative-tag-pool-implementation-tp13162667p16002466.html
Sent from the Tomcat - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To start a new topic, e-mail: [email protected]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]