Ray's playground

 

Being a JSP: using JSP(Head First Servlets and JSP)

  In the end, a JSP is just a servlet.

  The Container generates a class from your JSP that implements the HttpJspPage interface. This is the only part of the generated servlet’s API that you need to

know. You don’t care that in Tomcat, for example, your generated servlet extends: org.apache.jasper.runtime.HttpJspBase. All you need to know about are the three key methods: jspInit(), jspDestroy(), _jspService().

  JSP Element Magnets: directive, declaration, EL expression, scriptlet, expression, action.

posted on 2010-07-23 18:37  Ray Z  阅读(169)  评论(0编辑  收藏  举报

导航