Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 540
Vijay Krishna Avatar asked Jun 28 '11 08:06

Vijay Krishna


2 Answers

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

like image 111
niran Avatar answered Nov 16 '22 06:11

niran


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.

like image 40
Abdul Kader Avatar answered Nov 16 '22 06:11

Abdul Kader