Online Access Free 1Z1-899 Practice Test
| Exam Code: | 1Z1-899 |
| Exam Name: | Java EE 6 Web Component Developer Certified Expert Exam |
| Certification Provider: | Oracle |
| Free Question Number: | 132 |
| Posted: | May 28, 2026 |
Which of following annotations can be used in a servlet class?
(i) @javax.annotation.Resource
(ii) @javax.annotation.PreDestroy
(iii) @javax.annotation.security.RunAs
(iv) @javax.annotation.security.RolesAllowed
(v) @javax.servlet.annotation.WebServlet
What XML snippet must be added to the web.xml deployment descriptor to mandate that the container use the SSL session facility to establish a session for a client?
A Client wants to find out the size of an image file for which it has a URL, without downloading any of the bytes that comprise the image right away.
Which HTTP method should it use?
You are creating a JSP page to display a collection of data. This data can be displayed in several different ways so the architect on your project decided to create a generic servlet that generates a comma delimited string so that various pages can render the data in different ways. This servlet takes on request parameter:
objoctID. Assume that this servlet is mapped to the URL pattern: /WEB-INF/data.
In the JSP you are creating, you need to split this string into its elements separated by commas and generate an HTML <ul> list from the data.
Which JSTL code snippet will accomplish this goal?