You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-create-first-java-gradle.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ Open `build.gradle` and change the `appName` in the following section to a uniqu
42
42
```gradle
43
43
azurefunctions {
44
44
resourceGroup = 'java-functions-group'
45
-
appName = 'azure-functions-sample-doc'
45
+
appName = 'azure-functions-sample-demo'
46
46
pricingTier = 'Consumption'
47
47
region = 'westus'
48
48
runtime {
@@ -55,7 +55,7 @@ azurefunctions {
55
55
Open the new Function.java file from the *src/main/java* path in a text editor and review the generated code. This code is an [HTTP triggered](functions-bindings-http-webhook.md) function that echoes the body of the request.
56
56
57
57
> [!div class="nextstepaction"]
58
-
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-maven-quickstart&step=generate-project)
58
+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-create-first-java-gradle&step=generate-project)
59
59
60
60
## Run the function locally
61
61
@@ -96,7 +96,7 @@ Hello, AzureFunctions
96
96
Use `Ctrl+C` in the terminal to stop the function code.
97
97
98
98
> [!div class="nextstepaction"]
99
-
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-maven-quickstart&step=local-run)
99
+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-create-first-java-gradle&step=local-run)
100
100
101
101
## Deploy the function to Azure
102
102
@@ -127,7 +127,7 @@ The deployment also packages the project files and deploys them to the new funct
127
127
The authLevel for HTTP Trigger in sample proejct is `ANONYMOUS`, which will skip the authentication. However, if you uses other authLevel like `FUNCTION` or `ADMIN`, you need to get the function key to call the function endpoint over HTTP. The easiest way to get the function key is from the [Azure portal].
128
128
129
129
> [!div class="nextstepaction"]
130
-
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-maven-quickstart&step=deploy)
130
+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=functions-create-first-java-gradle&step=deploy)
131
131
132
132
## Get the HTTP trigger URL
133
133
@@ -148,7 +148,7 @@ You can now use the copied URL to access your function.
148
148
To verify the function app running on Azure using `cURL`, replace the URL from the sample below with the URL that you copied from the portal.
0 commit comments