spring
Uppgiftens genomförande och schemaläggning
Sök…
Aktivera schemaläggning
Våren ger ett användbart stöd för uppgiftsplanering. För att aktivera det, anteckna bara någon av dina @Configuration
klasser med @EnableScheduling
:
@Configuration
@EnableScheduling
public class MyConfig {
// Here it goes your configuration
}
Fast fördröjning
Om vi vill att någon kod ska köras regelbundet efter att exekveringen som var innan är klar, bör vi använda en fast fördröjning (mätt i millisekunder):
@Component
public class MyScheduler{
@Scheduled(fixedDelay=5000)
public void doSomething() {
// this will execute periodically, after the one before finishes
}
}
Fast ränta
Om vi vill att något ska köras med jämna mellanrum, kommer denna kod att triggas en gång per värdet i millisekunder som vi anger:
@Component
public class MyScheduler{
@Scheduled(fixedRate=5000)
public void doSomething() {
// this will execute periodically
}
}
Cron-uttryck
Ett Cron-uttryck består av sex sekvensfält -
second, minute, hour, day of month, month, day(s) of week
och förklaras enligt följande
@Scheduled(cron = "* * * * * *")
Vi kan också ställa in tidszonen som -
@Scheduled(cron="* * * * * *", zone="Europe/Istanbul")
Anmärkningar: -
syntax means example explanation
------------------------------------------------------------------------------------
* match any "* * * * * *" do always
*/x every x "*/5 * * * * *" do every five seconds
? no specification "0 0 0 25 12 ?" do every Christmas Day
Exempel: -
syntax means
------------------------------------------------------------------------------------
"0 0 * * * *" the top of every hour of every day.
"*/10 * * * * *" every ten seconds.
"0 0 8-10 * * *" 8, 9 and 10 o'clock of every day.
"0 0/30 8-10 * * *" 8:00, 8:30, 9:00, 9:30 and 10 o'clock every day.
"0 0 9-17 * * MON-FRI" on the hour nine-to-five weekdays
"0 0 0 25 12 ?" every Christmas Day at midnight
En metod som deklareras med @Scheduled()
kallas uttryckligen för varje matchande fall.
Om vi vill att någon kod ska köras när ett cron-uttryck uppfylls, måste vi ange det i annotationen:
@Component
public class MyScheduler{
@Scheduled(cron="*/5 * * * * MON-FRI")
public void doSomething() {
// this will execute on weekdays
}
}
Om vi vill skriva ut aktuell tid i vår konsol för var efter 5 sekunder -
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component
public class Scheduler {
private static final Logger log = LoggerFactory.getLogger(Scheduler.class);
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
@Scheduled(cron = "*/5 * * * * *")
public void currentTime() {
log.info("Current Time = {}", dateFormat.format(new Date()));
}
}
Exempel med XML-konfiguration:
Exempel klass:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import java.text.SimpleDateFormat;
import java.util.Date;
@Component("schedulerBean")
public class Scheduler {
private static final Logger log = LoggerFactory.getLogger(Scheduler.class);
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
public void currentTime() {
log.info("Current Time = {}", dateFormat.format(new Date()));
}
}
Exempel XML (task-context.xml):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-4.1.xsd">
<task:scheduled-tasks scheduler="scheduledTasks">
<task:scheduled ref="schedulerBean" method="currentTime" cron="*/5 * * * * MON-FRI" />
</task:scheduled-tasks>
<task:scheduler id="scheduledTasks" />
</beans>