Skip to content

Commit 3e5813d

Browse files
Update functions-reference-java.md
The purpose of this PR is making clear that placing multiple functions in separate jars within the same function app is not supported as it can lead to intermittent issue, like JavaClass not found. The propose change is a a direct output result from the ICM 518430212. Also similar situation has been discussed before on this old github post Azure/azure-functions-java-worker#68 (comment)
1 parent 37b1d14 commit 3e5813d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-reference-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ FunctionsProject
9393

9494
You can use a shared [host.json](functions-host-json.md) file to configure the function app. Each function has its own code file (.java) and binding configuration file (function.json).
9595

96-
You can put more than one function in a project. Avoid putting your functions into separate jars. The `FunctionApp` in the target directory is what gets deployed to your function app in Azure.
96+
You can put more than one function in a project. Avoid putting your functions into separate jars, as this scenario is not officially supported. The `FunctionApp` in the target directory is what gets deployed to your function app in Azure.
9797

9898
## Triggers and annotations
9999

0 commit comments

Comments
 (0)