-
Notifications
You must be signed in to change notification settings - Fork 57
Debugging Azure Functions Host and Java Worker
Pragna Gopa edited this page Mar 22, 2019
·
1 revision
- Create a test Azure Function in Java
- Clone https://github.com/Azure/azure-functions-host repo and follow instructions to run samples
- Set WebJobs.Script.WebHost as the startup project
- Set Environment variable AZURE_FUNCTIONS_ENVIRONMENT = Development
- To enable IntelliJ to attach to azure-functions-java-worker.jar, set Environment variable
languageWorkers:java:arguments=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
- To enable Eclipse to attach to azure-functions-java-worker.jar, set Environment variable
set languageWorkers:java:arguments=-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=y
F5 WebJobs.Script.WebHost project and then attach to remote process in IntelliJ or Eclipse