Skip to main content

Posts

Showing posts from October, 2013

Introduction to JSP

  Now lets explore JSP (Java Server Page) Inoder to understand JSP we have very much understanding of what serverlet is. If you don't have the basic understanding what servlet does . i would recommend review the previous post first and start with this one.So what is a Jsp ?. Before we explore JSP i would like to explain one potential problem of using servlets; to be honest we can develop any web application using servlets we have all required technology to do that so you can capture any user request through url and assign a servlet to handle it and any html code written in servlet .But Creating html code inside servlet is very crucial process means using print writer manipulating a dynamic html page is highly Challenging. We can tackle this situation by using Jsp so that we can write java code inside html code.