i am using spring annotaions with <task:annotation-driven/>
@Scheduled(fixedDelay=100)
public void shout(){
System.out.println("hello");
}
this is printing only 9 times, but i want it to print infinitely.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As far as I understand you and the behavior, then the problem seams to be that the containing Application, Test, whatever just ends.
A Spring Scheduler does not hold the application open. If the spring context ends, because the application ends, then the timer also stops.