Latest Answer : It means its a static and for example page1 and page2 are web pages if that content of the page2 is include with in the page1 and the its execuited.As well as First page2 is execuited after that page1 is execuited.And ...
Latest Answer : Using a Bean in a JSP PageTo use a bean in a JSP page, three attributes must be supplied - an id, which provides a local name for the bean, the bean's class name, which is used to instantiate the bean if it does not exit, and a scope, which specifies ...
Latest Answer : scriptelet are used to write the code in any language but that language is mentioned in page language attribute.ex://returns siva kumar expession are used to display the simple values and returning ...
GenericServlet is for servlets that might not use HTTP, like for instance FTP service.As of only Http is implemented completely in HttpServlet. The GenericServlet has a service() method that gets called
Both are interfaces. The servlet engine implements the ServletConfig interface in order to pass configuration information to a servlet. The server passes an object that implements the ServletConfig interface
Latest Answer : Servlet Config
1, Servlet config are one per servlet,
2, It's inside the servlet, it wont accessible to outside the servlet.
ex:
Servlet ...
Latest Answer : the single thread model can cater to only one client at a time and puts the other clients requesting in the queue whereas the multi thread model caters to as many clients requesting as possible. ...
GenericServlet is for servlets that might not use HTTP, like for instance FTP service.As of only Http is implemented completely in HttpServlet. The GenericServlet has a service() method that gets called
Both are interfaces. The servlet engine implements the ServletConfig interface in order to pass configuration information to a servlet. The server passes an object that implements the ServletConfig interface
Latest Answer : if we are implementing singlethreadmodel then at a time one request is serviced & every time a new reqyest is coming so new instance is created.if we are implementing multithreadmodel then at a time more than one request is serviced so every time a new ...
GenericServlet is for servlets that might not use HTTP, like for instance FTP service.As of only Http is implemented completely in HttpServlet. The GenericServlet has a service() method that gets called