0
我試圖找到它,但沒有結果。我想讓對象具有指向何時運行的bash腳本和cron表達式的路徑。這是SpringBoot項目。我看到它是這樣的:使用類字段的cron表達式安排作業
public class TestScript {
private String cronExpression;
private String pathToFile;
public void execute() {
// either it's @Scheduled or execute another way
}
}
是否有可能做?如果可以的話請引導我。