UserSyncService.java
313 Bytes
package com.mass.service;
import lombok.extern.slf4j.Slf4j;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
@Service
@Slf4j
public class UserSyncService {
@Scheduled(cron = "*/5 * * * * ?")
public void snyc(){
log.info("test");
}
}