Spring MVC报错The matching wildcard is strict, but no declaration can be found for element ‘mvc:default-servlet-handler
时间: 2024-06-14 18:03:33 浏览: 205
根据提供的引用内容,这个错误通常是由于Spring MVC配置文件中缺少命名空间声明或缺少相应的xsd文件所致。解决此问题的方法如下:
1. 确认Spring MVC配置文件中是否声明了mvc命名空间。例如:
```xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
```
2. 确认Spring MVC配置文件中是否正确使用了mvc命名空间中的元素。例如:
```xml
<mvc:default-servlet-handler />
```
3. 确认Spring MVC配置文件中是否正确引入了xsd文件。例如:
```xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
```
如果无法访问xsd文件,可以尝试使用本地文件系统中的xsd文件,例如:
```xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
file:///C:/spring-mvc.xsd">
```
阅读全文