Given a JSP error page, which implicit object refers to the uncaught Throwable that resulted in th epage being invoked?()
第1题:
A.<jsp-property-group>.<url-pattern>*.jsp</url-pattern>.<permit-scripting>false</permit-scripting>.</jsp-property-group>
B.<jsp-config>.<url-pattern>*.jsp</url-pattern><permit-scripting>false</permit-scripting>.</jsp-config>
C.<jsp-config>.<url-pattern>*.jsp</url-pattern>.<scripting-invalid>true</scripting-invalid>.</jsp-config>
D.<jsp-property-group>.<url-pattern>*.jsp</url-pattern>.<scripting-invalid>true</scripting-invalid>.</jsp-property-group>
第2题:
Given the element from the web application deployment descriptor:
第3题:
JSP标准动作不包括()。
第4题:
JSP页面包括以下哪些元素?()
第5题:
Given this fragment from a Java EE deployment descriptor: 341.
第6题:
A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()
第7题:
Java code
Template text
Scripting code
Standard action
Expression language
第8题:
Java code
Template text
Scripting code
Standard action
Expression language
第9题:
Default costs 0.0
Default costs 49.95
Default costs 39.95
The Matrix costs 0.0
The Matrix costs 49.95
The Matrix costs 39.95
第10题:
<b></b>
<b>12</b>
The JSP fails to execute.
<% int i = 12 %><b><%= i %></b>
第11题:
Id
Val
Name
Param
Value
Property
第12题:
The deployment descriptor is invalid.
The container invokes mainError.jsp.
The container invokes castError.jsp.
Neither mainError.jsp nor castError.jsp is invoked.
第13题:
A.<jsp:importfile=’foo.jsp’/>
B.<jsp:importpage=’foo.jsp’/>
C.<jsp:includepage=’foo.jsp’/>
D.<jsp:includefile=’foo.jsp’/>
第14题:
Which JSP standard action can be used to import content from a resource called foo.jsp?()
第15题:
下面哪个不是JSP中和javabean相关的标记?()
第16题:
You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the
第17题:
Which two are valid and equivalent?()
第18题:
Given the JSP code: 10. 11. 12.
第19题:
<%! int count = 0; %><% if ( request.getSession(false) == null ) count++; %>
<%@ int count = 0; %>. <% if ( request.getSession(false) == null ) count++; %>
<% int count = 0;. if ( request.getSession(false) == null ) count++; %>
<%@ int count = 0;. if ( request.getSession(false) == null ) count++; %>
<%! int count = 0;. if ( request.getSession(false) == null ) count++; %>
第20题:
<b></b>
<b>12</b>
The JSP fails to execute.
<% int i = 12 %><b><%= i %></b>
第21题:
Error
Exception
Throwable
Request error
Request exception
第22题:
<%> Welcome <% out.print(login.getName()); %>
Welcome <% writer.print(login.getName()); %>
Welcome <% response.out.print(login.getName()); %>
Welcome <% response.writer.print(login.getName()); %>
Welcome <% response.getOutputStream().write(login.getName()); %>
第23题:
The deployment descriptor is invalid.
The container invokes mainError.jsp.
The container invokes castError.jsp.
Neither mainError.jsp nor castError.jsp is invoked.