Created
January 3, 2013 19:09
-
-
Save Isxida/4446097 to your computer and use it in GitHub Desktop.
Descripcion del error al crear el bean.Cliente
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO: Refreshing WebApplicationContext for namespace 'spring-servlet': startup date [Thu Jan 03 13:08:46 COT 2013]; root of context hierarchy | |
ene 03, 2013 1:08:46 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions | |
INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/spring-servlet.xml] | |
ene 03, 2013 1:08:48 PM org.springframework.core.io.support.PropertiesLoaderSupport loadProperties | |
INFO: Loading properties file from ServletContext resource [/WEB-INF/jdbc.properties] | |
ene 03, 2013 1:08:49 PM org.springframework.beans.factory.support.DefaultListableBeanFactory preInstantiateSingletons | |
INFO: Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@329a44d8: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,clienteController,jspViewResolver,messageSource,propertyConfigurer,dataSource,sessionFactory,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,transactionManager]; root of factory hierarchy | |
ene 03, 2013 1:08:49 PM org.springframework.beans.factory.support.DefaultSingletonBeanRegistry destroySingletons | |
INFO: Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@329a44d8: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.internalPersistenceAnnotationProcessor,clienteController,jspViewResolver,messageSource,propertyConfigurer,dataSource,sessionFactory,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,transactionManager]; root of factory hierarchy | |
ene 03, 2013 1:08:49 PM org.springframework.web.servlet.FrameworkServlet initServletBean | |
SEVERE: Context initialization failed | |
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'clienteController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private service.ClienteService controlador.ClienteController.cliService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:286) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1055) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:511) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:450) | |
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:290) | |
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:287) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:189) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:562) | |
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:871) | |
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:423) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:443) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:459) | |
at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:340) | |
at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:307) | |
at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:127) | |
at javax.servlet.GenericServlet.init(GenericServlet.java:212) | |
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1206) | |
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1026) | |
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4421) | |
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4734) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardHost.start(StandardHost.java:840) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:463) | |
at org.apache.catalina.core.StandardService.start(StandardService.java:525) | |
at org.apache.catalina.core.StandardServer.start(StandardServer.java:754) | |
at org.apache.catalina.startup.Catalina.start(Catalina.java:595) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) | |
at java.lang.reflect.Method.invoke(Unknown Source) | |
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289) | |
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414) | |
Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private service.ClienteService controlador.ClienteController.cliService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:507) | |
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:283) | |
... 33 more | |
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:901) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:770) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:685) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:478) | |
... 35 more | |
ene 03, 2013 1:08:49 PM org.apache.catalina.core.ApplicationContext log | |
SEVERE: StandardWrapper.Throwable | |
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'clienteController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private service.ClienteService controlador.ClienteController.cliService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:286) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1055) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:511) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:450) | |
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:290) | |
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:287) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:189) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:562) | |
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:871) | |
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:423) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:443) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:459) | |
at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:340) | |
at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:307) | |
at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:127) | |
at javax.servlet.GenericServlet.init(GenericServlet.java:212) | |
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1206) | |
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1026) | |
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4421) | |
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4734) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardHost.start(StandardHost.java:840) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:463) | |
at org.apache.catalina.core.StandardService.start(StandardService.java:525) | |
at org.apache.catalina.core.StandardServer.start(StandardServer.java:754) | |
at org.apache.catalina.startup.Catalina.start(Catalina.java:595) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) | |
at java.lang.reflect.Method.invoke(Unknown Source) | |
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289) | |
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414) | |
Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: private service.ClienteService controlador.ClienteController.cliService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:507) | |
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:283) | |
... 33 more | |
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:901) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:770) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:685) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:478) | |
... 35 more | |
ene 03, 2013 1:08:49 PM org.apache.catalina.core.StandardContext loadOnStartup | |
SEVERE: Servlet /isx-SpringHibernate threw load() exception | |
org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException(DefaultListableBeanFactory.java:901) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:770) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:685) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:478) | |
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:84) | |
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:283) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1055) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:511) | |
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:450) | |
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:290) | |
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:287) | |
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:189) | |
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:562) | |
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:871) | |
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:423) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:443) | |
at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:459) | |
at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:340) | |
at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:307) | |
at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:127) | |
at javax.servlet.GenericServlet.init(GenericServlet.java:212) | |
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1206) | |
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1026) | |
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4421) | |
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4734) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardHost.start(StandardHost.java:840) | |
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1057) | |
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:463) | |
at org.apache.catalina.core.StandardService.start(StandardService.java:525) | |
at org.apache.catalina.core.StandardServer.start(StandardServer.java:754) | |
at org.apache.catalina.startup.Catalina.start(Catalina.java:595) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) | |
at java.lang.reflect.Method.invoke(Unknown Source) | |
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289) | |
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Para resumir...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'clienteController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private service.ClienteService controlador.ClienteController.cliService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [service.ClienteService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
es el problema