Details
diff --git a/examples/demo-template/admin-access-app/src/main/webapp/admin/admin.jsp b/examples/demo-template/admin-access-app/src/main/webapp/admin/admin.jsp
index 4ca66af..7046211 100755
--- a/examples/demo-template/admin-access-app/src/main/webapp/admin/admin.jsp
+++ b/examples/demo-template/admin-access-app/src/main/webapp/admin/admin.jsp
@@ -3,6 +3,7 @@
<%@ page import="org.keycloak.representations.idm.RoleRepresentation" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>
+<%@ page session="false" %>
<html>
<head>
<title>Admin Interface</title>
diff --git a/examples/demo-template/customer-app/src/main/webapp/admin/admin.jsp b/examples/demo-template/customer-app/src/main/webapp/admin/admin.jsp
index ee9c7a6..e6c99d5 100755
--- a/examples/demo-template/customer-app/src/main/webapp/admin/admin.jsp
+++ b/examples/demo-template/customer-app/src/main/webapp/admin/admin.jsp
@@ -2,6 +2,7 @@
<%@ page import="org.keycloak.representations.idm.RoleRepresentation" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>
+<%@ page session="false" %>
<html>
<head>
<title>Customer Admin Interface</title>
diff --git a/examples/demo-template/customer-app/src/main/webapp/customers/view.jsp b/examples/demo-template/customer-app/src/main/webapp/customers/view.jsp
index 2dd4624..881818d 100755
--- a/examples/demo-template/customer-app/src/main/webapp/customers/view.jsp
+++ b/examples/demo-template/customer-app/src/main/webapp/customers/view.jsp
@@ -4,6 +4,7 @@
<%@ page import="org.keycloak.example.CustomerDatabaseClient" %>
<%@ page import="org.keycloak.representations.IDToken" %>
<%@ page import="org.keycloak.util.KeycloakUriBuilder" %>
+<%@ page session="false" %>
<html>
<head>
<title>Customer View Page</title>
diff --git a/examples/demo-template/product-app/src/main/webapp/admin/admin.jsp b/examples/demo-template/product-app/src/main/webapp/admin/admin.jsp
index b6448d7..25352b6 100755
--- a/examples/demo-template/product-app/src/main/webapp/admin/admin.jsp
+++ b/examples/demo-template/product-app/src/main/webapp/admin/admin.jsp
@@ -1,5 +1,6 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
+<%@ page session="false" %>
<html>
<head>
<title>Product Admin Interface</title>
diff --git a/examples/demo-template/product-app/src/main/webapp/products/servlet-logout.jsp b/examples/demo-template/product-app/src/main/webapp/products/servlet-logout.jsp
index 1a9eb42..c293f03 100755
--- a/examples/demo-template/product-app/src/main/webapp/products/servlet-logout.jsp
+++ b/examples/demo-template/product-app/src/main/webapp/products/servlet-logout.jsp
@@ -1,5 +1,6 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
+<%@ page session="false" %>
<html>
<head>
<title>Servlet Logout</title>
diff --git a/examples/demo-template/product-app/src/main/webapp/products/view.jsp b/examples/demo-template/product-app/src/main/webapp/products/view.jsp
index 81d94c1..92a6651 100755
--- a/examples/demo-template/product-app/src/main/webapp/products/view.jsp
+++ b/examples/demo-template/product-app/src/main/webapp/products/view.jsp
@@ -3,6 +3,7 @@
<%@ page import="org.keycloak.ServiceUrlConstants" %>
<%@ page import="org.keycloak.example.oauth.ProductDatabaseClient" %>
<%@ page import="org.keycloak.util.KeycloakUriBuilder" %>
+<%@ page session="false" %>
<html>
<head>
<title>Product View Page</title>
diff --git a/examples/demo-template/third-party/src/main/webapp/pull_data.jsp b/examples/demo-template/third-party/src/main/webapp/pull_data.jsp
index 6d998b7..9f102b4 100755
--- a/examples/demo-template/third-party/src/main/webapp/pull_data.jsp
+++ b/examples/demo-template/third-party/src/main/webapp/pull_data.jsp
@@ -4,6 +4,7 @@
<%@ page import="org.keycloak.servlet.ServletOAuthClient" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
+<%@ page session="false" %>
<html>
<head>
<title>Pull Page</title>
diff --git a/examples/demo-template/third-party/src/main/webapp/redirect.jsp b/examples/demo-template/third-party/src/main/webapp/redirect.jsp
index c74a9ae..3455d91 100755
--- a/examples/demo-template/third-party/src/main/webapp/redirect.jsp
+++ b/examples/demo-template/third-party/src/main/webapp/redirect.jsp
@@ -1,3 +1,5 @@
-<%@ page import="org.keycloak.example.oauth.ProductDatabaseClient" %><%
+<%@ page import="org.keycloak.example.oauth.ProductDatabaseClient" %>
+<%@ page session="false" %>
+<%
ProductDatabaseClient.redirect(request, response);
%>
\ No newline at end of file