
Playing with Java in Azure Functions - New Release
In one of the previous posts, I introduced the Azure Functions Java. I felt that I need to write a dedicated tutorial to this great Azure Serverless service 😁 In this post, I will be covering many concepts in deep: Triggers and bindings Events and messaging Deployments & Consumptions Monitoring Generating the hello-world project We will scaffold a Java-based Azure Function project using Maven Archetypes, using this command: 1 2 3 4 5 6 7 8 9 $ mvn archetype:generate -DarchetypeGroupId=com.microsoft.azure \ -DarchetypeArtifactId=azure-functions-archetype \ -DappName=hello-world-app-example \ -DappRegion=FranceCentral \ -DresourceGroup=helloworld-rg \ -DgroupId=com.helloworld.group \ -DartifactId=helloworld-functions \ -Dpackage=com.helloworld \ -DinteractiveMode=false The generated project will look like: ...








