Ajava

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