🎴 Flashcard Mode

SQL, C and Java Programming Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

Which interface is implemented by the services in order to pass configuration information to a Servlet when it first starts

AnswerClick to flip back
A
ServletConfig
💡 Explanation:

ServletConfig is an interface implemented by the servlet container to pass configuration information (init parameters, servlet context) to a servlet during initialization. It's accessed via getServletConfig(). Struts Config is framework-specific, WebXML is deployment descriptor format.

Change Mode