What is ServletConfig object?
2251
03-Nov-2014
Anonymous User
03-Nov-2014javax.servlet.ServletConfigis used to pass configuration information to Servlet. Every servlet has it’s own ServletConfig object and servlet container is responsible for instantiating this object. We can provide servlet init parameters in web.xml file or through use of WebInitParam annotation. We can use getServletConfig() method to get the ServletConfig object of the servlet.