Intellij IDEA 创建Spring时,遇到的一些小问题

最近想学一下JAVA后台,在网上找了一些教程看,根据教程操作遇到了一些问题,在此记录一下

The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'

最开始遇到这个问题,

把servlet里面的xmlns:context="http://www.springframework.org/schema/tool" 

改成

xmlns:context ="http://www.springframework.org/schema/context"

就好

启动服务的时候,报 

SpringMVC 出现通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明。

这个错误

网上很多都是说在applicationContext里面加

http://www.springframework.org/schema/context

http://www.springframework.org/schema/context/spring-context-4.3.xsd"

试了很久都不行,最后在servlet里面加才行

这样就可以了

你可能感兴趣的:(Intellij IDEA 创建Spring时,遇到的一些小问题)