如何安排@安排在EC2上运行

问题描述 投票:0回答:1

我已经使用Beanstalk成功部署了我的spring boot应用程序,但我注意到它没有运行作为其一部分的@Scheduled事件。

@Scheduled(cron = "0 30 * * * *")
public void getProperStudiesInTable() {
    //some code to execute
}

我将实例文件部署在运行于64位Amazon Linux 2 / 3.0.1的Corretto 11上。非常感谢您提供有关如何运行它的任何建议!

amazon-web-services spring-boot cron amazon-elastic-beanstalk scheduled-tasks
1个回答
0
投票

我能够找出我的问题。我需要通过运行

进入实例并启动实际服务器
java -jar application.jar
© www.soinside.com 2019 - 2024. All rights reserved.