首页 > TAG信息列表 > testSession
向session共享数据(使用的是servletAPI方法,推荐)
向session共享数据(使用的是servletAPI方法,推荐) @RequestMapping("/testSession")public String testSession(HttpSession session){ session.setAttribute("testSession","hello, session"); return "target3";} public String testSessi