spring mvc默认index.jsp页面绑定请求出现的jsessionid=xxx路径的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc默认index.jsp页面绑定请求出现的jsessionid=xxx路径的问题相关的知识,希望对你有一定的参考价值。
/**进入系统首页*/
@RequestMapping("/index.do")
public String index(HttpServletResponse response)
{
Cookie cookie = new Cookie("jsessionid", "2jcligmgi6fh");
cookie.setMaxAge(Integer.MAX_VALUE);
response.addCookie(cookie);
return "main";
}
以上是关于spring mvc默认index.jsp页面绑定请求出现的jsessionid=xxx路径的问题的主要内容,如果未能解决你的问题,请参考以下文章