What is the impact of using lazy loading in servlets?
- Degrades performance by loading all resources upfront
- Has no impact on performance
- Improves performance by loading resources only when needed
- Reduces servlet flexibility
Lazy loading in servlets improves performance by loading resources only when needed, avoiding unnecessary resource loading upfront, which can lead to better response times.
Loading...
Related Quiz
- How does asynchronous processing in servlets improve server resource utilization?
- In HTTP servlets, the _________ method is used to send error responses back to the client.
- How does PreparedStatement help in preventing SQL injection attacks?
- What is the primary interface for handling HTTP requests in Java servlets?
- Using _________ instead of concatenation in loops for string manipulation enhances performance in servlets.