不工作我試圖使用HttpSession.setMaxInactiveInterval調整會話超時,它不工作。HttpSession.setMaxInactiveInterval在Tomcat中6
這裏是我的代碼(Groovy中),這是沒有例外執行:
def paramValue = WebAttributes.REQUEST.getParameter('maxInactiveSeconds');
println 'paramValue=' + paramValue;
if (paramValue != null) {
def seconds = Integer.parseInt(paramValue);
WebAttributes.REQUEST.getSession().setMaxInactiveInterval(seconds);
}
一些細節:
- 的Tomcat 6.0.16
- 這是在web應用程序發生從分開「正常」一個(即,具有視覺內容),但是我已經定義emptySessionPath =「真」,因此該會話*應該*跨越web應用共享
感謝,
占卜師
這是什麼技術? – tylerdurden 2018-02-01 07:10:17