1Z0-899 무료 덤프문제 온라인 액세스
| 시험코드: | 1Z0-899 |
| 시험이름: | Java EE 6 Web Component Developer Certified Expert Exam |
| 인증사: | Oracle |
| 무료 덤프 문항수: | 132 |
| 업로드 날짜: | 2026-08-26 |
Which code snippet specifies the metadata for a servlet with:
(i) url mapping "/mytest"'
(ii) Initial parameter with name "debug" and value "10"'
(iii) Support asynchronous operation?
All of your JSPs need to have a link that permits users to email the web master. This web application is licensed to many small businesses, each of which have a different email address for the web master. You have decided to use a context parameter that you specify in the deployment descriptor, like this:
42. <context-param>
43. <param-name>webmasterEmail</param-name>
44. <param-value>[email protected]</param-value>
45. </context-param>
Which JSP code snippet creates this email link?
Which of the following are attributes of the annotation javax.servlet.annotation.WebFilter?
(i) Name
(ii) servletNames
(iii) urlPatterns
(iv) dispatcherTypes
(v) supportAsync
When using Servlet asynchronous API if you want to dispatch the request back to a particular url -"/url" within the same Servlet Context which of the following API would you use?
You are building JSP pages that have a set of menus that are visible based on a user's security role. These menus are hand-crafted by your web-design team; for example, the SalesManager role has a menu in the file
/WEB-INF/html/sales-mgr-menu.html.
Which JSP code snippet should be used to make this menu visible to the user?