소스 검색

Updated doc on invalid session detection.

Invalid session URL must typically be omitted from the filter chain to prevent an infinite loop.
Luke Taylor 15 년 전
부모
커밋
a5dde8b28f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      samples/tutorial/src/main/webapp/WEB-INF/applicationContext-security.xml

+ 1 - 1
samples/tutorial/src/main/webapp/WEB-INF/applicationContext-security.xml

@@ -33,7 +33,7 @@
         <x509 />
 -->
         <!-- Uncomment to limit the number of sessions a user can have -->
-        <session-management>
+        <session-management invalid-session-url="/something">
             <concurrency-control max-sessions="1" error-if-maximum-exceeded="true" />
         </session-management>