1. 程式人生 > >"萬用字元的匹配很全面, 但無法找到元素 'tx:annotation-driven' 的宣告" 的解決方案

"萬用字元的匹配很全面, 但無法找到元素 'tx:annotation-driven' 的宣告" 的解決方案

在 SpringMVC 的配置檔案中,一般會出現這個錯誤,即萬用字元的匹配很全面, 但無法找到元素 XXX:XXX 。

出現這樣錯誤的原因一般就是因為xml檔案的問題。

如果在標頭檔案中沒有引入
xmlns:mvc="http://www.springframework.org/schema/mvc"
在xml中就會直接報錯提示你

如果這行程式碼引入了,還是依舊報這個錯,這就說明xsi:schemaLocation 沒有寫。

如下:

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="http://www.springframework.org/schema/jee" 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/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">

上下要保證一致才不會報錯。