Invalid bean definition with name 'connectionFactory' defined in

spring中可能出现以下错误:

java.lang.IllegalStateException: Failed to load ApplicationContext

Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'connectionFactory' defined in

失败加载应用上下文,本人出现这个问题是spring.xml加载多个*.properties的时候不能使用--》


              class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
          
   


需要使用:

     
   
      
          
           classpath:jdbc.properties  
           classpath:redis.properties  
           
       
  
   
  
 

你可能感兴趣的:(IDE)