Build and Deploy your Java app to an Azure Web App

TFS 2015

In just a few steps you can build and deploy your Java app to Azure. This works from both the Azure Pipelines service and your on-premises Team Foundation Server.

Upload your code

Upload your code to Azure Pipelines or your on-premises Team Foundation Server. Either push your code to Git or check in your code to TFVC.

If you don't have any code, you can download our Hello world Java web app.

What code is in the sample app?

Enable Java, Apache Tomcat, and FTP for your Azure Web App

  1. Sign in to the Azure portal.

  2. Edit or create a Java web app and enable Apache Tomcat.

  3. Click the deployment credentials part (outlined in red below). Create a user name and password. Click Save. If you previously enabled publishing for a web app, you don't need to do this step.

    Create FTP deployment credentials

Create the pipeline

  1. Open your project in your web browser. If you don't see your project listed on the home page, select Browse.

    Browse to project

    On-premises TFS: http://{your_server}:8080/tfs/DefaultCollection/{your_project} The TFS URL doesn't work for me. How can I get the correct URL?

  2. Create a build pipeline.
    Build tab

  3. Click Empty to start with an empty pipeline.

Define variables to store Azure FTP authentication data

On the Variables tab, store the data needed to copy files to Azure via FTP. Copy this data from the Azure portal. There is nothing special about the variable names we suggest below, so you can make them whatever you prefer.

Name Notes
azure.ftp.userName Take this value from your Azure Web App essentials. For example if the name of your Azure Web App is FabrikamJava, then the value would be : FabrikamJava\YourUserName
azure.ftp.password Take this value from your Azure subscription deployment settings. In your build pipeline variables, make sure to click secret to avoid exposing this password value. I don't want to use my Azure subscription FTP credentials. Can I use credentials scoped to my Azure Web App?

Java deployment build variables

Add build tasks

On the Build tab, add these tasks:

Build: Maven Build: Maven

Build the app.

  • Maven POM file: Browse and select your pom.xml file. For example, helloworld/pom.xml.
Utility: cURL Upload Files Utility: cURL Upload Files

Copy the .war file to Azure.

  • Files: helloworld/target/hello.war
  • Username: $(azure.ftp.userName)
  • Password: $(azure.ftp.password)
  • URL: Take this value from your Azure Web App essentials page on the Azure portal. For example, ftp://waws-prod-sn1-011.ftp.azurewebsites.windows.net
  • Optional Arguments: -Q "+CWD site/wwwroot/webapps"
Utility: Copy and Publish Build Artifacts Build: Publish Build Artifacts

(Optional) Drop some of the build outputs, such as the .war file as we do in the example below.

  • Copy Root: helloworld/target
  • Contents: hello.war
  • Artifact name: drop
  • Artifact Type: Server

Finish and test the pipeline

  1. On the Repository tab:

    • Git: Make sure the repository and branch containing your application are selected. (By default the repository with the same name as the project is selected.)

    • TFVC: Make sure the folder that contains your app is mapped.

  2. On the Triggers tab select continuous integration (CI). If your code is in Git, specify the branches you want to build.

  3. Save your pipeline and queue the build.

After a successful build, check your site: http://{web_app_name}.azurewebsites.net/{war_file_name}

FAQ

What code is in the sample app?

We used Eclipse to create our Hello World Java sample web app. We adapted a project created from the maven webapp archetype.

|-- .gitignore
`-- helloworld
    |-- .classpath
    |-- .project
    |-- pom.xml
    `-- src
        `-- main
            `-- webapp
                |-- WEB-INF
                |   `-- web.xml
                `-- index.jsp

The pom.xml file enables you to build with Maven. The .gitignore file keeps build artifacts on your dev machine from getting into your Git repo.

I don't want to use my Azure subscription FTP credentials. Can I use credentials scoped to my Azure Web App?

A: Yes.

  1. Sign in to the Azure portal.

  2. Open your web app and download the publish profile.

  3. Open your .PublishSettings file and copy some of the data from the publishMethod="FTP" section into your build variables.

Name Value from .PublishSettings file attribute Notes
azure.ftp.userName userName For example, YourAppName\$YourAppName
azure.ftp.password userPWD In your build pipeline variables, make sure to click secret to avoid exposing this password value.

What other kinds of apps can I build?

Build and deploy your app examples

What other kinds of build tasks are available?

Build and release tasks catalog

How do we protect our codebase from build breaks?

How do I modify other parts of my build pipeline?

I selected parallel multi-configuration, but only one build is running at a time.

If you're using Azure Pipelines, you might need more parallel jobs. See Parallel jobs in Azure Pipelines.

How do I see what has changed in my build pipeline?

View the change history of your build pipeline

Do I need an agent?

You need at least one agent to run your build or release.

I'm having problems. How can I troubleshoot them?

See Troubleshoot Build and Release.

I can't select a default agent pool and I can't queue my build or release. How do I fix this?

See Agent pools.

My NuGet push task is failing with the following error: "Error: unable to get local issuer certificate". How can I fix this?

This can be fixed by adding a trusted root certificate. You can either add the NODE_EXTRA_CA_CERTS=file environment variable to your build agent, or you can add the NODE.EXTRA.CA.CERTS=file task variable in your pipeline. See Node.js documentation for more details about this variable. See Set variables in a pipeline for instructions on setting a variable in your pipeline.