backend/buisnesslogic/src/main/java/com/plannaplan/services/EventService.java
2021-01-03 18:06:25 +01:00

29 lines
718 B
Java
Executable File

package com.plannaplan.services;
import org.springframework.context.annotation.Bean;
// import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
@Service
public class EventService {
// @Autowired
// private EmailService emailService;
@Scheduled(cron = "0 2 17 * * *")
public void collectGroupLosses() {
System.out.println("Checking for groups");
}
@Scheduled(cron = "#{@getTourValue}")
public void performAcceptAction() {
System.out.println("Checking for hahaha");
}
@Bean
public String getTourValue() {
return "0 6 18 * * *";
}
}