The method getValue(String) from the type HttpSession is deprecated
if((String)session.getValue("IsLogin")!="true")//实现在控制器和页面之间传递参数{Stringloginmsg="logi...
if((String)session.getValue("IsLogin")!="true") //实现在控制器和页面之间传递参数
{
String loginmsg="loginfirst";
response.sendRedirect("../login.jsp?loginmsg="+loginmsg);
}
提示出现警告The method getValue(String) from the type HttpSession is deprecated,意思好像是没有这个方法,这是什么原因,怎么解决啊? 展开
{
String loginmsg="loginfirst";
response.sendRedirect("../login.jsp?loginmsg="+loginmsg);
}
提示出现警告The method getValue(String) from the type HttpSession is deprecated,意思好像是没有这个方法,这是什么原因,怎么解决啊? 展开
4个回答
展开全部
ya178 帮帮团:
1.要用:session.getAttribute("IsLogin")
2.(String)session.getValue("IsLogin")!="true",这个判断太...应该是:!(String)session.getValue("IsLogin").equals("true")
1.要用:session.getAttribute("IsLogin")
2.(String)session.getValue("IsLogin")!="true",这个判断太...应该是:!(String)session.getValue("IsLogin").equals("true")
追问
我改为getAttribute后,为什么一些html语句会出现警告?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
getValue
换成 getAttribute 试试
换成 getAttribute 试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
session.getAttribute(key);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用session.getAttribute("IsLogin"),那个被废弃了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询