问题描述
- 登录index.jsp欢迎页面时发送的request并没有向服务器端发送保存的cookie 5C
- 下图是servlet代码,其中username和psw都是字符串变量
下图是index.jsp代码
![
如图所示,当我在servlet里response.addCookie()保存了cookie之后,再次打开工程跳转到index.jsp页面时,request并没有将我要的cookie传到服务器端,index.jsp中的username和psw的打印结果都是null;求解
解决方案
我记得 Cookie ck = new Cookie(""username""username""); 这样写的吧!
时间: 2024-10-16 22:58:05