Azure Function examples in Java
To run it on your machine just use the following commands:
cd {folder}
mvn clean install
mvn azure-functions:runDeploy to Azure Functions with mvn azure-functions:deploy:
mvn azure-functions:deployRun the following command to view near real-time streaming logs:
func azure functionapp logstream <APP_NAME> You need to have an Azure Subscription to deploy to Azure. Checkout Azure's free offerings
And you need to be logged-in to your Azure Account within your az-cli. Run az login to log in.
Make sure to follow the best practices for Azure Functions:
- Avoid long running functions
- Take care of cross function communication
- Make your functions stateless
- Write defensive functions
- Organize functions for performance and scaling
- Don't mix test and production code in the same function app
more at the official documentation for best practices.
To build this project yourself, you can leverage from maven archetype.
mvn archetype:generate -DarchetypeGroupId=com.microsoft.azure -DarchetypeArtifactId=azure-functions-archetype -DjavaVersion=11More details can be find here.
Azure Functions are available for Java 8 and 11 since 1.12.0.Final.
To build this project yourself, you can leverage from maven archetype.
mvn archetype:generate \
-DarchetypeGroupId=io.quarkus \
-DarchetypeArtifactId=quarkus-azure-functions-http-archetype \
-DarchetypeVersion=1.12.1.FinalFind more details for Azure Functions and Quarkus here.
Let micronaut.io generate your starting project.
Java 11 is not supported yet and will fall back to 8.