Для меня выражение хрон вы ищете: 0 0 12 * * ?
Вот рабочий пример для вас:
applicationContext.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:context="http://www.springframework.org/schema/context"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">
<bean id="logDeletionTask" class="task.Task" />
<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="logDeletionTask" method="deleteExpiredLogs" cron="0 0 12 * * ?" />
</task:scheduled-tasks>
<task:scheduler pool-size="25" id="myScheduler"/>
</beans>
Задача боб:
package task;
import java.util.Date;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Task {
public static void main(String[] args) throws InterruptedException {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
while (true) {
Thread.sleep(1000);
}
}
public void deleteExpiredLogs() {
System.out.println(new Date());
}
}
Возможно, у вас был код на машине или сервере с другим часовым поясом –