giri
giri

Reputation: 27199

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: 155

Answers (1)

Chandra Patni
Chandra Patni

Reputation: 17577

You can also enable servlet reloading:

<Context reloadable="true">

Upvotes: 2

Related Questions