I understand how to implement thread-safe servlets, but what about JSP's. If I have a JSP that declares variables with only page scope,for example:
<%
int size = 0;
%>
<html>
<head>
....
Is size threadsafe? How does the servlet code look when its converted from the JSP.
Thanks