Reputation: 27239
When we change any code in servlet we need to restart Apache ,but when we change any code in JSP we need not restart Apache. Even though at last JSP is turned to Servlet.I
Upvotes: 0
Views: 157
Reputation: 17587
You can also enable servlet reloading:
<Context reloadable="true">
Upvotes: 2