codecamp

Micronaut Google Cloud Function

Micronaut GCP 子项目中实现了对 Google Cloud Function 的支持。

具有云功能的简单功能

您可以使用直接实现 Cloud Function Framework API 的 Micronaut 实现 Cloud Functions。

使用 CLI

要创建 Google 云函数:

$ mn create-function-app my-app --features google-cloud-function

或者使用 Micronaut Launch

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

具有云函数的 HTTP 函数

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

使用 CLI

要创建 Google Cloud HTTP 函数:

$ mn create-app my-app --features google-cloud-function

或者使用 Micronaut Launch

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


Micronaut AWS Lambda
Micronaut Google Cloud Run
温馨提示
下载编程狮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; }