giri
giri

Reputation: 27239

Restart of Apache Tomacat

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

Answers (1)

Chandra Patni
Chandra Patni

Reputation: 17587

You can also enable servlet reloading:

<Context reloadable="true">

Upvotes: 2

Related Questions