Reputation: 664
I Have a Jar file. that takes arguments and perform certain actions.
EX:
java -jar MyJavaEx.jar dev
this jar file will execute some logic inside it and then prints some log.
I want run this job daily using ADF trigger. how to do this?
if this is not possible what's the best alternative approach.
Upvotes: 1
Views: 1226
Reputation: 121799
If you're looking for a lightweight, serverless way to run your Java app, I'd consider Azure Functions.
You might find this document helpful:
Azure Functions Java developer guide
Upvotes: 2