sandeep negi
sandeep negi

Reputation: 9

How do you configure the IP address and port in App Engine Java?

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

Answers (2)

manoz
manoz

Reputation: 91

This setup made for eclipse with app engine java sdk In eclipse (Local)

  1. First you need to install google app engine plugin https://developers.google.com/eclipse/docs/download

  2. Restart eclipse

  3. open your google app engine project (Eg: https://github.com/GoogleCloudPlatform/appengine-java-guestbook-multiphase/archive/master.zip)

  4. Right click your project google->App engine settings-->run config enter image description here enter image description here

  5. In web application-> select your project then open server tab to config

enter image description here 6. Run it in local enter image description here

Enjoy!!!

Upvotes: 1

Matthias Danetzky
Matthias Danetzky

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

Related Questions