When refactoring a servlet to make it more configurable, what changes are made regarding initialization parameters?

  • Introduce new initialization parameters
  • Keep the existing parameters unchanged
  • Remove all initialization parameters
  • Replace parameters with hardcoding
In the process of making a servlet more configurable, one typically introduces new initialization parameters rather than removing or replacing existing ones. This allows for greater flexibility without disrupting existing functionality.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *