GAE 处理简单的 http post 请求 (java)
我正在尝试使用谷歌应用程序引擎在java上构建网络应用程序。我有一个正在发送 http-post 请求的应用程序。
- 我的网络应用程序应该是什么样子来处理这个 http-post 请求?
- 如果我的网络应用程序 gae url 是 http://example.appspot.com/example_app<,我应该在 HttpPost 中使用什么 url /a>
i'm trying to make out with web-apps on java using google app engine. i have an application that is sending http-post request.
- what should my web-app looks like to handle this http-post request?
- what url should i use in HttpPost if my web-app gae url is http://example.appspot.com/example_app
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 GAE 上创建一个用于处理 POST 的servlet:
将此 servlet 映射到
web.xml 中的网址。 xml
配置文件:Create a servlet on GAE that handles the POST:
Map this servlet to URL in
web.xml
config file: