在contextConfigLocation文件中添加多部分解析程序后出现错误

时间:2014-03-06 11:57:51

标签: java spring spring-mvc

以下是我的contextConfigLocation文件,其中我添加了bean标签以将多部分解析器添加到我的项目上传文件,此处添加此项后我收到错误“HTTP状态404-类型状态报告 信息 description请求的资源不可用。 “  请帮帮我。谢谢

 <?xml version="1.0" encoding="UTF-8"?>

    <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"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:annotation-config/>     
      <context:component-scan base-package="net.codejava.spring" /> 
<bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">   
        <property name="maxUploadSize" value="20971520" /> <!-- 20MB -->

        <property name="maxInMemorySize" value="1048576" /> <!-- 1MB -->

    </bean>

</beans>

0 个答案:

没有答案