Azure AppServiceにGradleのSpring Bootをデプロイする

2023.11.05

概要

  • AzureのAppServiceへのデプロイ手順は公式ではMavenになっている
  • ビルドツールは、Gradleを使っているので、GradleをCLIでデプロイしたい

How

  • Gradle用のプラグインが用意されていることがわかったので、READ.MEを参照して実施した

https://github.com/microsoft/azure-gradle-plugins/blob/master/azure-webapp-gradle-plugin/README.md

build.gradleに追加

com.microsoft.azure.azurewebappのライブラリを導入する

plugins {
    id 'org.springframework.boot' version '2.6.6'
    id 'io.spring.dependency-management' version '1.0.11.RELEASE'
    id 'java'
    id 'org.flywaydb.flyway' version '8.0.0'
    id "com.microsoft.azure.azurewebapp" version "1.2.0"
}
azurewebapp {
    subscription = '##サブスクリプションコード##'
    resourceGroup = '##Azureのリソースグループ名##'
    appName = '##appName##'
}

デプロイ

% ./gradlew azureWebAppDeploy

> Configure project :
default messager has already been registered

> Task :azureWebAppDeploy
Auth type: OAUTH2
Default subscription: xxxxx
Username: xxxxx
Subscription: xxxxxx
Updating target Web App xxxx...
Successfully updated Web App xxxxx.
Trying to deploy artifact to xxxx...
Successfully deployed the artifact to https://xxxxx.azurewebsites.net

BUILD SUCCESSFUL in 1m 5s
5 actionable tasks: 5 executed
%

Azure関連は公式ドキュメントは存在しますが、実際にそちらを基に開発しても対応に苦慮するケースが多いため、本記事で知見を残しておきたいと思います。

以上です。