Given an HttpSession session,a ServletRequest request,and a ServletContext context,which retrieves aURL to /WEB-INF/myconfig.xml within a web application?()
第1题:
对于每个要求访问maillogin.jsp的HTTP请求,Servlet容器都会创建一个HttpSession对象。
第2题:
Given: 3.public class MyTagHandler extends TagSupport { 4.public int doStartTag() { 5.// insert code here 6.// return an int 7.} 8.// more code here ... 18.} There is a single attribute foo in the session scope. Which three code fragments,inserted independently atline 5,return the value of the attribute?()
第3题:
Servlet2.4以后提供了哪几种对象的事件监听?()
第4题:
下列选项中关于HttpSession描述错误的是()。
第5题:
J2EE中,()类的()方法用于创建对话。
第6题:
HttpSession与Hibernate中Session的区别
第7题:
Given an HttpServletRequest request: 22.String id = request.getParameter("jsessionid"); 23.// insert code here 24.String name = (String) session.getAttribute("name"); Which three can be placed at line 23 to retrieve anexisting HttpSession object?()
第8题:
J2EE中,哪个类的哪个方法用于创建对话?()
第9题:
HttpSession失效的时机是()。
第10题:
在Servlet里,能正确获取session的语句是()。