越來越會話我如下設置在JSP代碼中的會話屬性並提交HTTP表單的servlet:在JSP中設置會話和servlet的
session.setAttribute("qnaInfo", qnaInfo);
System.out.println("session.getAttribute" + session.getAttribute("qnaInfo"));
我想獲得會話屬性在servlet代碼如下:
HttpSession session = request.getSession(true);
AuthQnAInfo storedQnaInfo = (AuthQnAInfo) session.getAttribute("qnaInfo");
在servlet中它只在IE中爲null。但在Chrome中,我獲得了價值。
請幫忙解決這個問題。
IE可能配置爲拒絕Cookie。 –
嗨感謝您的回覆。我在Internet Explorer中啓用了Cookie。在阻止cookie級別爲Medium之前,我將其設置爲低,即使在IE中,我也可以在我的servlet中獲得會話數據。但是,這是什麼解決方案?我無法在所有機器上做同樣的事情,我曾經託管我的應用程序。所以請提出一些建議。 – Anita
也許只有當服務器是本地主機時纔會出現問題,並且不會在生產中發生? –