Guest User

Untitled

a guest
Jan 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @SpringBootApplication
  2. @EnableScheduling
  3. @Import({SecurityConfig.class})
  4. public class BlogsApplication implements CommandLineRunner {
  5. ..
  6. }
  7.  
  8. @Component
  9. public class UptadeCurrencyJob1 {
  10.  
  11. @Scheduled(cron = "0 0/10 1 * * ?")
  12. public void reportCurrentTime() throws IOException {
  13.  
  14. System.out.println("UptadeCurrencyJob1");
  15. }
  16. }
Add Comment
Please, Sign In to add comment