зеркало из
				https://github.com/iharh/notes.git
				synced 2025-11-04 07:36:08 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 строки
		
	
	
		
			494 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 строки
		
	
	
		
			494 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
https://spring.io/guides/gs/scheduling-tasks/
 | 
						|
 | 
						|
https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/Scheduled.html
 | 
						|
 | 
						|
at main app
 | 
						|
import org.springframework.scheduling.annotation.EnableScheduling;
 | 
						|
    @EnableScheduling
 | 
						|
    https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/annotation/EnableScheduling.html
 | 
						|
    
 | 
						|
later...
 | 
						|
    @Scheduled(initialDelay = ONE_SECOND, fixedDelay = ONE_MINUTE)
 | 
						|
 | 
						|
samples
 |