more get-started content and small overview change

This commit is contained in:
Robert Outlaw 2017-04-18 16:00:20 -07:00
Родитель e22f7b224b
Коммит 3d9bb4bea0
2 изменённых файлов: 52 добавлений и 1 удалений

Просмотреть файл

@ -178,7 +178,58 @@ az vm delete --resourceGroup sampleResourceGroup --name testLinuxVM
## Deploy a web app from a GitHub repo
Replace the code in AzureSDKApp.java with the following class:
```java
package com.fabrikam.testSDKApp;
import com.microsoft.azure.management.Azure;
import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext;
import com.microsoft.azure.management.appservice.WebApp;
import com.microsoft.rest.LogLevel;
import com.microsoft.azure.management.resources.fluentcore.arm.Region;
import java.io.File;
public class AzureSDKApp {
public static void main(String[] args) {
try {
final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION"));
final String appName = SdkContext.randomResourceName("webapp-", 20);
Azure azure = Azure.configure()
.withLogLevel(LogLevel.BASIC)
.authenticate(credFile)
.withDefaultSubscription();
WebApp app = azure.webApps().define(appName)
.withNewResourceGroup("sampleResourceGroup")
.withNewAppServicePlan("testAppServicePlan")
.withRegion(Region.US_WEST2)
.withFreePricingTier()
.defineSourceControl()
.withPublicGitRepository(
"https://github.com/Azure-Samples/app-service-web-dotnet-get-started")
.withBranch("master")
.attach()
.create();
} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
}
}
```
This code will deploy a .NET app directly from a public GitHub repo into Azure App Service. Verify the deployment through the CLI:
```azurecli
az appservice
## Explore the samples code

Просмотреть файл

@ -34,7 +34,7 @@ VirtualMachine linuxVM = azure.virtualMachines().define(linuxVmName)
.create();
```
Review the [Install article](java-sdk-azure-install.md) to import the SDK into your Maven or Gradle projects. Then read the [Get Started](java-sdk-azure-get-started.md) to set up authentication and run some sample code against your own Azure subscription. The more in depth [concepts article](java-sdk-azure-patterns.md) article goes into the patterns the SDK uses and how to leverage those to simplify your application code.
Review the [Install instructions](java-sdk-azure-install.md) to get the SDK into your Maven or Gradle projects either on the command line . Then read the [Get started](java-sdk-azure-get-started.md) to set up authentication and run some sample code against your own Azure subscription. The more in depth [concepts article](java-sdk-azure-patterns.md) article goes into the patterns the SDK uses and how to leverage those to simplify your application code.
Use the code in the following samples to learn how to perform common tasks with the Azure SDK for Java: