1Z0-899 무료 덤프문제 온라인 액세스
시험코드: | 1Z0-899 |
시험이름: | Java EE 6 Web Component Developer Certified Expert Exam |
인증사: | Oracle |
무료 덤프 문항수: | 132 |
업로드 날짜: | 2025-08-31 |
Which two statements are true about the security-related tags in a valid Java EE deployment descriptor?
(Choose two)
View the exhibit.
Assuming the tag library in the exhibit is imported with the prefix stock, which custom tag Invocation outputs the contents of the variable exposed by the quote tag?
Given the java code snippet in contextInitialized method of a ServletContextListner:
ServletRegistration.Dynamic sr = (ServletRegistration.Dynamic)sc.addServlet ("myServlet", myServletClass); sr.addMapping("/abc"); sr.setServletSecurityElement(servletSecurityElement); sr.addMapping("/def"); Which statement is true?
Which interface must a class implement so that instances of the class are notified after any object added to a session?
Given the element from the web application deployment descriptor:
<jsp - property - group>
<url - pattern>/main/page1.jsp</url - pattern>
<scripting - invalid>true</scripting - invalid>
</jsp-property-group>
And given that /main/page1.jsp contains:
<% int i = 12; %>
<b> <%= i %> </b>
What is the result?