怎么在job实现类中使用spring自动注入
展开全部
注解写法:
@Service
public class TestJob {
@Scheduled(cron = "0/2 * * * * *")
public void process() {
System.out.println("job run");
}
public static void main(String[] args) throws InterruptedException {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
"applicationContext.xml");
while (true) {
System.out.println("main running...");
Thread.sleep(10000);
}
}
}
这是个Test,你放在spring项目里的时候删掉main,配置里扫描到带@Scheduled的类,就会自动实现了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询