Posted in J2EE, JSP, Servlet on February 21, 2008 | 2 Comments »
Overview of JSP
When the user requests a JSP page for the first time, A JSP converts into servlet java source file and compiles into servlet class file that is called as translation phase, then onwards it works like pure servlet for all requests this is called execution/request process phase. But the method signatures are different [...]
Read Full Post »
Posted in J2EE, JAVA, JSP, Servlet on February 21, 2008 | No Comments »
A thread is a single execution process; in other words, an individual, sequential flow of control within a program. When we say that a program is multi-threaded, we are not implying that the program runs two separate instances simultaneously (as if you concurrently executed the program twice from the command line). Rather, we are saying [...]
Read Full Post »
Posted in JAVA, JSP, Servlet on February 18, 2008 | No Comments »
Check here and read about javax.servlet.jsp package
Read Full Post »
Posted in JAVA, JSP, Servlet on February 18, 2008 | No Comments »
Check here and read about javax.servlet package.
Read Full Post »
Posted in J2EE, JSP, Servlet on February 14, 2008 | No Comments »
JavaServer Pages (JSP) technology is well on its way to becoming the preeminent Java technology for building applications that serve dynamic Web content. The biggest advantage of using JSP is that it helps effectively separate presentation from content. This model can also be seen as a server-side implementation of the popular Model-View-Controller (MVC) design pattern.
Read Full Post »