azure-functions-java-worker
azure-functions-java-worker copied to clipboard
Java runtime and core types for Microsoft Azure Functions
#### Repro steps 1. Run the following function from templates: ```java package com.function; import java.util.*; import com.microsoft.azure.functions.annotation.*; import com.microsoft.azure.functions.*; /** * Azure Functions with HTTP Trigger. */ public class HttpTriggerJava1...
Inherit from #303 Add spring cloud function samples and docs for different triggers and bindings.
When using the feature that some functions triggers implement, of allowing to received data as POJO ([like Event Grid trigger ](https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-event-grid-trigger?tabs=in-process%2Cextensionv3&pivots=programming-language-java#event-grid-trigger-pojo-parameter) ) we found that we cannot deserialize the JSON...
### Issue describing the changes in this PR resolves #295 ### Pull request checklist * [x] My changes **do not** require documentation changes * [ ] Otherwise: Documentation issue linked...
BREAKING CHANGE: Enabled the `UseNullableValueDictionaryForHttp` capability which makes the host send back request information in nullable maps (i.e. When the `UseNullableValueDictionaryForHttp` capability is enabled, the host stores the values in...
### Issue describing the changes in this PR add triggers and bindings samples copied from https://github.com/Azure-Samples/azure-functions-samples-java ### Pull request checklist * [X] My changes **do not** require documentation changes *...
I have created spring boot azure function using the example given here. https://github.com/eggboy/springcloud-azurefunction/tree/springboot3 It worked fine on local, but when I deployed it to azure cloud. I get below error....
### Issue describing the changes in this PR Added E2E tests for MySql Extensions for Azure Functions ### Pull request checklist * [x] My changes **do not** require documentation changes...
if i use the following function deklaration for an azure function i get the appnded deserialization exception if i test the function locally. Changeing the `Token` to `List` everthing work...
Sending requests to a Java HttpTriggered function results in an empty body if transfer-encoding is set to chunked #### Investigative information Please provide the following: - Timestamp: local - Function...