Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Following is my contextConfigLocation file where i have added bean tag to add multipart resolver to my project to upload file, here after adding this i am getting error "HTTP status 404 -type Status report message description The requested resource is not available. "
Above error is coming while i am trying to open welcome page (which is main page)
Please help me out.Thanks


<?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>
Posted
Comments
Shubhashish_Mandal 10-Mar-14 8:21am    
Application failed to deploy, that is the reason you got the above message.
check the deployment log to get the exact reason

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900