Azure App Service libraries for Java
Overview
Deploy and manage websites, web applications, and REST APIs with Azure App Service.
To get started with Azure App Service, see Create your first Java web app in Azure.
Management API
Deploy, scale, and configure applications in Azure App Service with the management API.
Add a dependency to your Maven pom.xml
file to use the management API in your project.
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-appservice</artifactId>
<version>2.8.0</version>
</dependency>
For more information of using Azure App Service Management API, please refer here.
Example
Deploy a webapp from a Docker image into an Azure Web App running on Linux.
WebApp app = azure.webApps().define("newLinuxWebApp")
.withExistingLinuxPlan(myLinuxAppServicePlan)
.withExistingResourceGroup("myResourceGroup")
.withPrivateDockerHubImage("username/my-java-app")
.withCredentials("dockerHubUser","dockerHubPassword")
.withAppSetting("PORT","8080")
.create();
Samples
Explore more sample Java code for Azure App Service you can use in your apps.
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Java