我有一个春季批量@Job定义.但是在运行它时(在tomcat中),由于com.sun.proxy,我得到了一个ClassCastException.$Proxy.
为什么会出现这种情况?以下摘录可能有什么问题?
@Servicepublic class JobService { @autowired private JobLauncher launcher; public voID run() { Job job = jobRegistry.getJob("jobname"); launcher.run(job,params); //line 59 }}@Configuration@EnableBatchProcessing(modular = true)public class JobConfig { @Bean @JobScope public MultiResourceItemReader
结果:
java.lang.classCastException: com.sun.proxy.$Proxy135 cannot be cast to org.springframework.batch.item.file.MultiResourceItemReader at org.springframework.batch.item.file.MultiResourceItemReader$$FastClassBySpringcglib$$ad846cb.invoke(
最佳答案如果您不需要读者的具体类型,则返回ItemReader< T>来自reader()函数.@JobScope默认使用cglib代理代理目标类. 总结
以上是内存溢出为你收集整理的java – Spring-Batch代理类不能转换为Class?全部内容,希望文章能够帮你解决java – Spring-Batch代理类不能转换为Class?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)