Skip to content

Latest commit

 

History

History
120 lines (87 loc) · 6.15 KB

functions-create-maven-intellij.md

File metadata and controls

120 lines (87 loc) · 6.15 KB
title description services documentationcenter author manager keywords ms.service ms.devlang ms.topic ms.date ms.author ms.custom
Create an Azure function with Java and IntelliJ | Microsoft Docs
Learn how to create and publish a simple HTTP-triggered, serverless app on Azure with Java and IntelliJ.
functions
na
jeffhollan
jpconnock
azure functions, functions, event processing, compute, serverless architecture, java
azure-functions
java
conceptual
07/01/2018
jehollan
mvc, devcenter

Create your first Azure function with Java and IntelliJ (preview)

Note

Java for Azure Functions is currently in preview.

This article shows you:

  • How to create a serverless function project with IntelliJ IDEA and Apache Maven
  • Steps for testing and debugging the function in the integrated development environment (IDE) on your own computer
  • Instructions for deploying the function project to Azure Functions

[!INCLUDE quickstarts-free-trial-note]

Set up your development environment

To develop a function with Java and IntelliJ, install the following software:

Important

The JAVA_HOME environment variable must be set to the install location of the JDK to complete the steps in this article.

We recommend that you install Azure Functions Core Tools, version 2. It provides a local development environment for writing, running, and debugging Azure Functions.

Create a Functions project

  1. In IntelliJ IDEA, select Create New Project.
  2. In the New Project window, select Maven from the left pane.
  3. Select the Create from archetype check box, and then select Add Archetype for the azure-functions-archetype.
  4. In the Add Archetype window, complete the fields as follows:
    • GroupId: com.microsoft.azure
    • ArtifactId: azure-functions-archetype
    • Version: Use the latest version from the central repository Create a Maven project from archetype in IntelliJ IDEA
  5. Select OK, and then select Next.
  6. Enter your details for current project, and select Finish.

Maven creates the project files in a new folder with the same name as the ArtifactId value. The project's generated code is a simple HTTP-triggered function that echoes the body of the triggering HTTP request.

Run functions locally in the IDE

Note

To run and debug functions locally, make sure you've installed Azure Functions Core Tools, version 2.

  1. Import changes manually or enable auto import.

  2. Open the Maven Projects toolbar.

  3. Expand Lifecycle, and then open package. The solution is built and packaged in a newly created target directory.

  4. Expand Plugins > azure-functions and open azure-functions:run to start the Azure Functions local runtime.
    Maven toolbar for Azure Functions

  5. Close the run dialog box when you're done testing your function. Only one function host can be active and running locally at a time.

Debug the function in IntelliJ

  1. To start the function host in debug mode, add -DenableDebug as the argument when you run your function. You can either change the configuration in maven goals or run the following command in a terminal window:

    mvn azure-functions:run -DenableDebug
    

    This command causes the function host to open a debug port at 5005.

  2. On the Run menu, select Edit Configurations.

  3. Select (+) to add a Remote.

  4. Complete the Name and Settings fields, and then select OK to save the configuration.

  5. After setup, select Debug < Remote Configuration Name > or press Shift+F9 on your keyboard to start debugging.

    Debug functions in IntelliJ

  6. When you're finished, stop the debugger and the running process. Only one function host can be active and running locally at a time.

Deploy the function to Azure

  1. Before you can deploy your function to Azure, you must log in by using the Azure CLI.

    az login
    
  2. Deploy your code into a new function by using the azure-functions:deploy Maven target. You can also select the azure-functions:deploy option in the Maven Projects window.

    mvn azure-functions:deploy
    
  3. Find the URL for your function in the Azure CLI output after the function has been successfully deployed.

    [INFO] Successfully deployed Function App with package.
    [INFO] Deleting deployment package from Azure Storage...
    [INFO] Successfully deleted deployment package fabrikam-function-20170920120101928.20170920143621915.zip
    [INFO] Successfully deployed Function App at https://fabrikam-function-20170920120101928.azurewebsites.net
    [INFO] ------------------------------------------------------------------------
    

Next steps

  • Review the Java Functions developer guide for more information on developing Java functions.
  • Add additional functions with different triggers to your project by using the azure-functions:add Maven target.