Reputation: 888
I'm using eclipse 3.7 and google app engine 1.5.
When i make changes to servlet and run it , i do not see the changes reflecting in the server. Stopping jetty ( by pressing red button on console window ) doesn't help). If i restart eclipse only then it works.
Its getting very difficult to debug my project.
Has anyone faced this issue, any fix?
Upvotes: 8
Views: 2337
Reputation: 1980
Change eclipse perspective into debug. it is on the top right corner of eclipse. Then choose debug window, there you can see the
Upvotes: 5
Reputation: 1207
Where is the terminate all button? In my eclipse there's only one terminate button... I have the same issue too, I can have to remember to turn off the server, wait a while and resteart the server for servlets to take effects. So annoying.
Upvotes: 0
Reputation: 5842
Changes in servlet won't reflect unless until you restart your server in java. As servlet code being server side . You have to restart your web server to reflect the same.What you are saying might apply to python, where as in python(being scripting language) the server side coding will be reflected without restarting the web server.
Upvotes: 4