Vijay Krishna
Vijay Krishna

Reputation: 888

Changes wont reflect in localhost while using google app engine

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

Answers (3)

niran
niran

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

enter image description here

Upvotes: 5

Gang Su
Gang Su

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

Abdul Kader
Abdul Kader

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

Related Questions