摘要: 1.使用ServletAPI实现转发 /* 使用HttpServletRequest对象实现请求转发 */ @RequestMapping("/httpServletRequest") public void method1(HttpServletRequest request, HttpServl 阅读全文
posted @ 2023-01-14 16:54 jsqup 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 作用域范围 |对象名称|作用范围| | | | |application|整个作用范围| |session|在当前会话中有效| |request|在当前请求中有效| |page|在当前页面有效| request/session/application作用域传值 package controller; 阅读全文
posted @ 2023-01-14 16:00 jsqup 阅读(9) 评论(0) 推荐(0) 编辑