我发现了 我系统里有给cookie赋值的地方
<% MyCookie mycookie = new MyCookie(request); String username = mycookie.GetCookieValue("username"); System.out.println("COOKIE中取出来的username值是"+username); System.out.println("session是是"+session.toString()); System.out.println("session中取出来的username值是"+session.getAttribute("userinfo").toString()); if ( username.equals("null") ) {username = "";}
System.out.println(session.getAttribute( "PASS_O" )); if (session.getAttribute( "PASS_O" )=="Y") { Cookie cookie = new Cookie("username", session.getAttribute("userinfo").toString() ); cookie.setMaxAge(606024*7); response.addCookie(cookie); %>
在登录 以后进入初始页面 初始页面有这段代码 ~~
还有就是我们公司有代理 开了代理肯定出错!不知道那代理怎么这么2~
不开代理当然也会出错= =!给cookie赋值了 那就不是你说的那个原因了- -!
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。