Spring Cron常见表达式
每分钟@Scheduled(cron = “0 * * * * *”) 每10秒@Scheduled(cron = “*/10 * * * * *”) 每5分钟@Scheduled(cron = “0 0/5 * * * ?”) 子夜@Scheduled(cron = “0 0 0 * * *”) 每天6点@Scheduled(cron = “0 0 6 * * *”) 每月1号凌晨1点执行一次@
每分钟@Scheduled(cron = “0 * * * * *”) 每10秒@Scheduled(cron = “*/10 * * * * *”) 每5分钟@Scheduled(cron = “0 0/5 * * * ?”) 子夜@Scheduled(cron = “0 0 0 * * *”) 每天6点@Scheduled(cron = “0 0 6 * * *”) 每月1号凌晨1点执行一次@
这个是2.3.x版本的,其他版本可以源码里面拿 https://github.com/spring-projects/spring-session/blob/2.3.x/spring-session-jdbc/src/main/resources/org/springframework/session/jdbc/schema-mysql.sql 12345678910111213141516171