gpt4 book ai didi

java - 如何将数据从常规无状态 servlet 传递到后端实例?

转载 作者:行者123 更新时间:2023-11-29 06:08:12 28 4
gpt4 key购买 nike

我从未使用过 Google App Engine 后端,我对缺乏示例和详细文档感到非常困惑。

假设我有一个投票应用程序。我想在常规的无状态 GAE servlet 中收集选票,然后将数据传递给驻留的后端实例并处理我的数据。如何将数据从常规 servlet 传递到后端 servlet?如何分配什么 servlet 类是普通 servlet 以及什么 servlet 应该只在后端实例中处理?我看不到如何在配置 xml 中将 servlet 分配给后端。

或者如果我有两个后端 - B1 类和 B2 类怎么办。我如何在无状态 servlet 代码中选择哪些后端现在处于 Activity 状态?我听说我应该使用 URL Fetch 来与后端对话,但是如何呢?我没有找到如何遍历后端实例。

请指教:)

最佳答案

您应该先阅读 the documentation on backends

How can I pass data from regular servlet to backend servlet ?

您有几个选择 - 通过将数据粘贴到内存缓存或数据存储中来间接传递它。或者通过使用 URLFetch 向您的后端发出请求直接传递它(请参阅下面的地址信息)

How do I assign what servlet class is normal servlet and what servlet should be handled only in backend instance?

Backend Configuration 上的文档解释说你还不能这样做,尽管你可以将它们标记为管理员,这样它们就不会对公众开放:

Backends share the set of servlets defined in web.xml with your main application version. It is not possible at the moment to configure a separate set of servlets for each backend.

“寻址后端”部分包含有关如何连接到特定后端的信息:

A backend instance can be targeted with HTTP requests to http://[instance].[backend].[app].appspot.com, or at your application's custom domain. If you target a backend without targeting an instance using http://[backend].[app].appspot.com, App Engine selects the first available instance of the backend.

当你配置你的后端时,你给它们命名,这些名称进入上述 url 方案中的 [backend] 槽。如果您想向第一个可用的 B1 实例发送 http 请求,您可以使用类似http://B1.ruslansapp.appspot.com/dosomething/

的内容

关于java - 如何将数据从常规无状态 servlet 传递到后端实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7923129/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com