Spring v3 no declaration can be found for element 'mvc:resources'

后端 未结 5 1077
广开言路
广开言路 2020-12-01 14:23

Currently Running

Tomcat: v6

Spring Tools Suite: v2.7.2

Spring Framework: spring-webmvc-3.0.5

Servlet XML

 

        
5条回答
  •  借酒劲吻你
    2020-12-01 14:24

    I was getting the same error. The cause was the missing Maven dependency spring -webmvc. I included the below dependency and it started working.

            
                org.springframework
                spring-webmvc
                ${spring.version}
            
    

提交回复
热议问题