Reputation: 9
How do you configure the IP address and port number in App Engine java environment? And how do you receive data on that IP and port?
Upvotes: 0
Views: 848
Reputation: 91
This setup made for eclipse with app engine java sdk In eclipse (Local)
First you need to install google app engine plugin https://developers.google.com/eclipse/docs/download
Restart eclipse
open your google app engine project (Eg: https://github.com/GoogleCloudPlatform/appengine-java-guestbook-multiphase/archive/master.zip)
Right click your project google->App engine settings-->run config
In web application-> select your project then open server tab to config
Enjoy!!!
Upvotes: 1
Reputation: 702
Take a look at the documentation: https://cloud.google.com/appengine/docs/standard/java/tools/using-local-server
It says, that you can use server command options --address=... and --port=...
Upvotes: 0