From: kkolinko Date: Thu, 16 Jun 2011 08:18:44 +0000 (+0000) Subject: Add session="false" directive to the index page of the ROOT web application. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a85cb3c12d9ae58f52f2ba4940a5b3a55064b598;p=tomcat7.0 Add session="false" directive to the index page of the ROOT web application. There is no need to create a session when accessing this page. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1136318 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/ROOT/index.jsp b/webapps/ROOT/index.jsp index 2ca898ed5..6fe86d3ba 100644 --- a/webapps/ROOT/index.jsp +++ b/webapps/ROOT/index.jsp @@ -15,6 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. --%> +<%@ page session="false" %> <% java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy"); request.setAttribute("year", sdf.format(new java.util.Date())); diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 8f3350f37..a12e630ce 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -104,6 +104,10 @@ 43538: Add host name and IP address to the HTML Manager application. Patch by Dennis Lundberg. (markt) + + Add session="false" directive to the index page of the + ROOT web application. (kkolinko) +