Ajava

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