博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[异常笔记]required a bean of type 'org.quartz.JobExecutionContext' that could not be found
阅读量:6826 次
发布时间:2019-06-26

本文共 736 字,大约阅读时间需要 2 分钟。

***************************APPLICATION FAILED TO START***************************Description:Parameter 0 of method executeInternal in com.xg.quartz.job.SftpJob required a bean of type 'org.quartz.JobExecutionContext' that could not be found.Action:Consider defining a bean of type 'org.quartz.JobExecutionContext' in your configuration.

原因:

是个人为低级错误,本来取消@Autowired注解,但是没有全部注释,这算哪门子异常,这就是自己傻逼行为,但还是要记一记醒醒脑。/狗
@Autowired    //private SftpRepository sftpRepository;    @Override    protected void executeInternal(JobExecutionContext context) throws JobExecutionException {        // 传入的参数        JobDataMap params = context.getJobDetail().getJobDataMap();               //...定时业务逻辑...    }

 

转载于:https://www.cnblogs.com/tocode/p/9460718.html

你可能感兴趣的文章
Oracle trunc()函数的用法
查看>>
col-md-*和col-sm-*
查看>>
前端开发大众手册(包括工具、网址、经验等)
查看>>
IOC容器
查看>>
“利益相关者”课堂讨论电子版
查看>>
意见总结
查看>>
servlet增删改查
查看>>
php - 中文字符串分割
查看>>
图解HTTP
查看>>
HTML - form (转)
查看>>
浅析C#深拷贝与浅拷贝 (转)
查看>>
3226. [SDOI2008]校门外的区间【线段树】
查看>>
如何解决jersey框架中以json格式返回数组,当数组中元素一个时json格式不对
查看>>
HDU 4898 The Revenge of the Princess’ Knight ( 2014 Multi-University Training Contest 4 )
查看>>
Kafka参数调优实战,看这篇文章就够了!
查看>>
delphi 把一个表的内容转到另一个表暂存时出错的解决方法。
查看>>
JavaScript 操作cookie
查看>>
BeanUtils.copyProperties() 用法
查看>>
微信公众平台开发 - 基础篇
查看>>
WinForm更新文件
查看>>