关于spring没有加载属性文件的问题

一般说来,spring没有在必要的属性文件文件,都是在tomcat初始化的时候发生的,这个时候一定是web.xml搞的鬼,例如下面的配置:


    
        DispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
        
            contextConfigLocation
            classpath*:spring/applicationContext_*.xml
        

        
        1
    

    
        DispatcherServlet
        *.htm
    

    

上边的红色的路径必须要有,即使在真实的路径中没有,这里也要写上。

你可能感兴趣的:(Bug)