codecamp

Micronaut Azure Function

对 Azure Function 的支持在 Micronaut Azure 子项目中实现。

使用 Azure Function 的简单函数

您可以使用直接实现 Azure Function Java SDK 的 Micronaut 实现 Azure Functions。

使用 CLI

创建 Azure 函数:

$ mn create-function-app my-app --features azure-function

或者使用 Micronaut Launch

$ curl https://launch.micronaut.io/create/function/example\?features\=azure-function -o example.zip
$ unzip example.zip -d example

带有 Azure 函数的 HTTP 函数

您可以使用 Micronaut 对 Azure HTTP 功能的支持来部署使用 @Controller 等的常规 Micronaut 应用程序。

使用 CLI

创建 Azure HTTP 函数:

$ mn create-app my-app --features azure-function

或者使用 Micronaut Launch

$ curl https://launch.micronaut.io/example.zip\?features\=azure-function -o example.zip
$ unzip example.zip -d example


Micronaut Google Cloud Run
Micronaut Kafka 支持
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Micronaut 独立命令行应用程序

Micronaut 安全

Micronaut 多租户

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }