一个较大的项目在Tomcat中发布好,启动Tomcat后就出现这个错误,求大神指点,谢谢

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'abatementAdvanceService': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.service.iface.OverdueInfoListService com.creditease.p2padmin.abatement.service.AbatementAdvanceService.oils;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'overdueInfoListServiceImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.newrepayment.service.GeneratePenaltyService com.creditease.p2padmin.service.OverdueInfoListServiceImpl.generatePenaltyService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'generatePenaltyImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.deduct.service.iface.DeductApplyService com.creditease.p2padmin.newrepayment.service.impl.GeneratePenaltyImpl.deductApplyService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'deductApplyServiceImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.deduct.service.iface.DeductProcessService com.creditease.p2padmin.deduct.service.DeductApplyServiceImpl.deductProcessService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'deductProcessServiceImpl': Injection of resource dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'deductChannelServiceImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.service.iface.SendMailForBusiService com.creditease.p2padmin.deduct.service.DeductChannelServiceImpl.sendMailForBusiService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sendMailForBusiServiceImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.creditease.p2padmin.service.iface.SendMessage com.creditease.p2padmin.service.SendMailForBusiServiceImpl.sendMessage; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sendMessageImpl': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.yirendai.p2pbusiness.finances.financesrenew.service.FinanceRenewService com.creditease.p2padmin.service.SendMessageImpl.financeRenewService; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'financeRenewServiceImpl': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private com.yirendai.p2pbusiness.couponcard.service.CouponCardService com.yirendai.p2pbusiness.finances.financesrenew.service.impl.FinanceRenewServiceImpl.couponCardService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'couponCardServiceImpl': Injection of resource dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'yrdKeyHolder' defined in file [D:\apache-tomcat-7.0.78\webapps\p2padmin\WEB-INF\classes\applicationContext.xml]: Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException;
nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'storeInfos' threw exception; nested exception is com.yirendai.p2pcommon.core.crypto.CryptoException: 加载keystore文件时出错。
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:289)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1146)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:519)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:296)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:293)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:198)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeansOfType(DefaultListableBeanFactory.java:438)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeansOfType(DefaultListableBeanFactory.java:428)
at org.springframework.context.support.AbstractApplicationContext.getBeansOfType(AbstractApplicationContext.java:1182)
at com.creditease.jms.scheduler.service.MissionProcessorFactory.init(MissionProcessorFactory.java:41)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:344)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:295)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:130)
... 35 more

很明显,你的abatementAdvanceService在注入到spring容器的时候失败了。

同上,依赖注入错误,这是根本原因