Reputation: 27199
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: 155
Reputation: 17577
You can also enable servlet reloading:
<Context reloadable="true">
Upvotes: 2