I deployed my application on GAE using java and GWT. when i login to my app using my app id sample.sampleappId.appspot.com. In my application there is lots of form when i fillin
These are perfectly normal INFO level logs (not WARNING or ERROR levels) from the GAE infra, indicating that the respective request triggered lauching of a new GAE Instance.
You can read more about launcing of new instances in the Scaling dynamic instances doc.
It's also possible that the previous instance life was cut short for various possible reasons. Check you app's logs in the developer console to see if it's indeed the case and, if so, get details. These you may want/need to address.
I just realized another possibility when I saw your other question How to call my app url from google app engine.
If your app makes requests to itself directly from within request handlers you can create infinite recursion loops, forcing GAE to spawn a new instance for each such request. Nothing may show up in the logs since GAE logs a request only after it serves it (at least in the python sandbox). Unless you specifically create logs before making the recursive calls. Eventually the instances blocked waiting for responses (which will never come due to the infinite recursion) will be killed as they'll exceed the request deadline.