Feed on
Posts
Comments

Archive for the ‘JSP’ Category

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 »

Write thread-safe servlets

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 »

javax.servlet.jsp Package

Check here and read about javax.servlet.jsp package

Read Full Post »

javax.servlet Package

Check here and read about javax.servlet package.

Read Full Post »

Understanding JSP Architecture

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 »