Tag: java ServletConfig
Understanding ServletConfig and ServletContext
by  Java4s | 2 Comments
  [ Ask Question ]
In our servlet application development, some of the programmers will write fixed coding , with in the servlet, which is not recommended. For example, if we write database related code in our servlet, in future if…
Example of ServletConfig in Java Servlet
by  Java4s | 15 Comments
  [ Ask Question ]
Let us see why/how to use ServletConfig interface in java servlet…. ServletConfig is one of the pre-defined interface. ServletConfig object is used for developing flexible servlets. ServletConfig objct exist one per servlet program. An object of ServletConfig created by…