J2EE 中创建会话:哪个类和方法?
在 J2EE 中,可以使用 HttpServletRequest 类的 getSession() 方法来创建会话。
A: HttpServletRequest的getSession
这个选项是正确的。HttpServletRequest.getSession() 方法用于获取当前请求的会话对象。如果会话不存在,则会创建一个新的会话。
其他选项是错误的:
- B: HttpServletResponse的newSession - HttpServletResponse 没有 newSession 方法。
- C: HtttpSession的newInstance - HttpSession 没有 newInstance 方法。
- D: HttpSession的getSession - HttpSession 没有 getSession 方法。
原文地址: https://www.cveoy.top/t/topic/qz8X 著作权归作者所有。请勿转载和采集!