spring MVC静态资源文件异常

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Cannot locate BeanDefinitionParser for element [default-servlet-handler]

 

    今天配置spring MVC配置文件时,总是报上面一行错误信息,一直百度搜索问题所在之处。不容易,找了一个晚上,总算是摸出点头绪。我的配置是spring 3.0配置,springMVC配置文件中有这一配置:

                

                

               

               

 

  发现配置是spring 3.0.4以上版本在支持,因为我的是spring 3.0 配置,所以会报错。

    解决方案(二选其一):

        1.spring jar 更换成spring 4.0 或者spring 3.0.4以上版本的。

        2.在web.xml中加上静态文件的配置

        
           default    
           *.jpg       
    
     
             
           default      
           *.js      
    
     
              
           default         
           *.css      

      

    

    我使用的myeclipse 8.5自带的spring。myeclipse最高支持的就是spring3.0版本。之前使用myeclipse 10 以及myeclipse 2014都没有出现此类问题。

 

     

https://blog.csdn.net/GeeLoong/article/details/72476688

 

你可能感兴趣的:(java框架)