2014-02-23 40 views

回答

1

嘗試添加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如果你需要它。

+0

非常感謝。 –

+0

當然...很高興幫助! – rpmartz

相關問題