gpt4 book ai didi

azure - 使用 Java SDK 创建 Azure Functions

转载 作者:行者123 更新时间:2023-12-03 04:00:27 25 4
gpt4 key购买 nike

我想使用 Java SDK 创建 Azure Functions,但在定义触发器时遇到一些问题,我创建函数应用程序的代码是:

FunctionApp function = azure.appServices().functionApps().manager()
.functionApps()
.define(appName)
.withRegion(region)
.withExistingResourceGroup(resourceGroup)
.withNewLinuxConsumptionPlan()
.withBuiltInImage(FunctionRuntimeStack.JAVA_11)
.withLatestRuntimeVersion()
.create();

我想定义一个 EventHub 触发器,但我不知道如何做到这一点,我看到我的函数对象具有以下方法:

function.triggerFunction(functionName, payload);

有效负载格式是什么?还有另一种方法可以做到这一点吗?

问候维克多

最佳答案

为了更轻松地创建 Java 函数,有一些基于 Maven 的工具和原型(prototype)使用预定义的 Java 模板来帮助您创建具有特定函数触发器的项目。

这里有一些供您引用。

Tutorial: Create a function in Java with an Event Hub trigger

Create Azure function with Java and IntelliJ.

Create Azure function with Java and Eclipse.

Create Azure function with Java and VS Code.

关于azure - 使用 Java SDK 创建 Azure Functions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62597262/

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