2012-07-16 67 views
2
<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:beans="http://www.springframework.org/schema/beans" 
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd 
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> 

<!-- Enables the Spring MVC @Controller programming model --> 
<annotation-driven /> 

<!-- Handles HTTP GET requests for /resources/** by efficiently serving 
    up static resources in the ${webappRoot}/resources/ directory --> 
<resources mapping="/resources/**" location="/resources/" /> 
<bean class="org.springframework.web.multipart.commons.CommonsMultipartResolver" 
    id="multipartResolver"> <property name="maxUploadSize" value="500000" /> 
</bean> 

还有就是我的context.xml文件,但是当我包括multipartResolver配置我得到以下错误:如何配置MultipartResolver?

"cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'bean'.". 

请帮助我,我是新来的春天。

+1

没有我的回答帮助你的? – jelies 2012-08-14 07:03:57

回答

6

我想你应该前缀beanpropertybeans

... 
<beans:bean class="org.springframework.web.multipart.commons.CommonsMultipartResolver" id="multipartResolver"> 
    <beans:property name="maxUploadSize" value="500000" /> 
</beans:bean> 
... 

,记得关闭与结束标记的XML:

... 
</beans:beans> 
+0

这个答案仍然有效,这是因为OP使用的是比他复制和粘贴的例子更新版本的Spring。 (就像我!) – 2014-03-07 00:09:37