There are answers on how to schedule tasks on Spring Boot
There are also links on how to create a Cron Job in App Engine
I am using Spring Boot for Google App Engine, so how can I have Cron jobs using Spring Boot?
There are answers on how to schedule tasks on Spring Boot
There are also links on how to create a Cron Job in App Engine
I am using Spring Boot for Google App Engine, so how can I have Cron jobs using Spring Boot?
The cron service in GAE is simply a scheduler for GET
requests to certain URLs handled by the application. From the very cron documentation reference you posted:
A cron job will invoke a URL, using an HTTP GET request, at a given time of day.
So all you have to do is:
You can also validate that the GET
requests for those URLs are only coming from App Engine.