Ajava

123456789101112131415
Across
  1. 5. The phase in a JSP lifecycle where the JSP page is converted into a servlet.
  2. 7. Method called during the initialization phase of a JSP.
  3. 8. Servlet API object obtained from ServletRequest to manage asynchronous operations.
  4. 9. The method invoked in the execution phase of a JSP to generate responses.
  5. 13. The phase in a JSP lifecycle where cleanup is done using the jspDestroy() method.
  6. 14. In JSP, tag used to insert dynamic content into the page, starting with <%= and ending with %>.
  7. 15. Technology that extends servlets to create dynamic, platform-independent web applications.
Down
  1. 1. Tag library that provides common functionality such as iteration and conditionals in JSP.
  2. 2. Java EE server often used with NetBeans for servlet deployment.
  3. 3. Servlet 3.1 feature that lets data be read without blocking a thread.
  4. 4. Java interface for handling asynchronous read events like onDataAvailable().
  5. 6. JSP format written in XML syntax, saved with the .jspx extension.
  6. 10. JSP file that serves as the home page in many Java EE web applications.
  7. 11. Annotation used to declare a servlet and enable asynchronous processing.
  8. 12. Java program running on a server that processes client requests and sends dynamic responses.