Difference between applicationContext.xml and spring-servlet.xml in Spring Framework

前端 未结 6 552
挽巷
挽巷 2020-11-22 01:35
  • Are applicationContext.xml and spring-servlet.xml related anyhow in Spring Framework?
  • Will the properties files declared in
6条回答
  •  不思量自难忘°
    2020-11-22 01:42

    One more point I want to add. In spring-servlet.xml we include component scan for Controller package. In following example we include filter annotation for controller package.

    
    
        
    
    

    In applicationcontext.xml we add filter for remaining package excluding controller.

    
            
        
    

提交回复
热议问题