0
我在<mvc:annotation-driven />
上遇到了麻煩。我想用JSR-303註釋。如何實現<mvc:annotation-driven />
檢查這個圖片。 http://s7.postimg.org/cz7itmiuj/Beze_jm_na.png
我在<mvc:annotation-driven />
上遇到了麻煩。我想用JSR-303註釋。如何實現<mvc:annotation-driven />
檢查這個圖片。 http://s7.postimg.org/cz7itmiuj/Beze_jm_na.png
嘗試添加xmlns:mvc="http://www.springframework.org/schema/mvc
屬性以及你開beans
元素的xsi:schemaLocation
內加入http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
。
喜歡的東西:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
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.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
顯然,保留您在您使用當前的配置,但不是在樣品中上述額外的命名空間,如xmlns:jee
如果你需要它。
非常感謝。 –
當然...很高興幫助! – rpmartz