Servlet in Java

Servlet in Java : Servlet is a server side technology used to work internally on client request and provide the support to the dynamic pages to show response on screen. What are the Common tasks performed by servlet container?Create and maintaining life cycle of an object.Provide JSP support over client request.Multithreading support.Take care of memory … Read more

JSP

JSP stands for Java Sever Page. Java Server Page used to create pages which can be visible o the end user while using the web application. Example: Java Server Page is extension of servlet technology to help developer to create dynamic pages with HTML like syntax.We can create user interface/view in servlet also but the … Read more