New Advanced Java Interview Questions :: ALLInterview.com http://www.allinterview.com New Advanced Java Interview Questions en-us Explain Life cycle of Servlet Filter. http://www.allinterview.com/showanswers/100792.html A java class which implements javax.servlet.Filter is configured as filter in web.xml file. The web container calls the init method to initialize filter by passing javax.servlet.FilterConfig object to retrieve the filter’s init parameters. What is Servlet Filter And What does it work? http://www.allinterview.com/showanswers/100748.html Filters are powerful tools of Servlet platform. These are just like a servlet which plugs into the request handling process and executes in addition to the normal page processing. Filters manipulate both request and response in web applicatio Explain the life cycle of servlet? http://www.allinterview.com/showanswers/100742.html 1. The servlet is controlled by the container in which the servlet has been deployed. When a request is made to a servlet, its mapping is searched in web.xml. If mapping found then the web container loads the servlet class and creates an inst Why does most servlets extend HttpServlet? http://www.allinterview.com/showanswers/100708.html Almost all servlets written today are designed to use the HTTP protocol, so most servlets currently extend the javax.servlet.http.HttpServlet class. What is servlet preinitialization http://www.allinterview.com/showanswers/100458.html A servlet is lazily loaded in servlet container of web or application server. This means, a servlet is not instantiated or initialized in servlet container as long as it has not been requested for the first time. A servlet can be preloaded and What is servlet preinitialization? http://www.allinterview.com/showanswers/100455.html A servlet is lazily loaded in servlet container of web or application server. This means, a servlet is not instantiated or initialized in servlet container as long as it has not been requested for the first time. A servlet can be preloaded and What are Benefits of Connection Pooling? http://www.allinterview.com/showanswers/99827.html 1. Connection pooling can improve the response time of any application that requires connections, especially Web-based applications. 2. The characteristics of the pool can be changed without affecting the application (e.g pointing to different What is Connection Pooling? http://www.allinterview.com/showanswers/99825.html Connection pooling is conceptually similar to any other form of object pooling. Database connections are often expensive to create because of the overhead of establishing a network connection and initializing a database connection session. In life cycle of an applet? http://www.allinterview.com/showanswers/99384.html yes because everyone is which is related to networking are implemented by an applet How to send a request to garbage collector? http://www.allinterview.com/showanswers/97971.html Garbage collection is implicitly accomplished with termination of instance. Wee dont need to explicitly request. cud u help me ... i am struggling with this question... to find all t http://www.allinterview.com/showanswers/96334.html How to get an image from db2 database plz help as soon as possible http://www.allinterview.com/showanswers/96161.html You can store images as binary data. BLOB's were supported in JDBC2.0 archtecture and you can use JDBC getBLOB() to retrieve binary datasets (and other SQL3 data types) similar to the way you receive the standard sql data types ... What is diffennce between AWT & SWING? http://www.allinterview.com/showanswers/94248.html AWT are heavy weight components while Swing are light weight components. what are JSP tags? what is difference between include action and di http://www.allinterview.com/showanswers/93752.html Wt is the main difference between Java and Java J2EE and Advanced ja http://www.allinterview.com/showanswers/87555.html According sun Microsystem java divided into 3 parts 1.J2Se(core java+Advance java) 2.j2EE 3.j2Me j2SE is availible in the part of jdk software. j2EE is availible in the form specification its avialible in the form thrid party ven