How to write Servlet hello world Example
Here we will learn to create simple web application with Servlet sending Hello World to JSP page. […]
Here we will learn to create simple web application with Servlet sending Hello World to JSP page. […]
What is a servletcontext ServletContext is a configuration Object which is created when web application is started. It contains different initialization parameter that can be configured in web.xml. […]
What is Servlet Container Normal Java application’s starting point is Main(public static void main(String args[])) method. When ever java application needs to start, main method of the application should be invoked. But in case of Servlet this is not true, Servlet doesn’t contain any main method. So who will initiate and run the method of [...]
Different Actors in Web application There are different actors which comes into picture of web application. End User Web Client(Browser Application) Server(Web Server / Application Server) Actual Page requested on Server […]