开发者社区> 问答> 正文

我发现了 我系统里有给cookie赋值的地方 400 请求报错 

 我发现了 我系统里有给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赋值了 那就不是你说的那个原因了- -!

展开
收起
kun坤 2020-05-30 22:52:01 462 0
0 条回答
写回答
取消 提交回答
问答排行榜
最热
最新

相关电子书

更多
对象的生命期管理 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载