1

Spring 3 を使用し、Uploadify を実装しています。問題は、ファイルが適切に更新されているのに、ファイルのアップロードが完了すると HTTP エラー 404 が発生することです。考えられるすべての解決策を試しましたが、どれもうまくいきません。

ファイルがアップロードされます。値は DB に適切に保存されていますが、HTTP エラー 404 が発生しているだけです。

解決策は次のとおりです。

Finally i found the solution but it is lame.

I removed the return "" and changed the method as void. Thats it.

But still i don't understand why the same code is working in Spring 2.5.6 and not in 3.

スクリーンショットの URL : http://imgur.com/bf3qo

JSP ページ

$(function() {
    $('#file_upload').uploadify({
        'swf'      : 'scripts/uploadify.swf',            
        'fileObjName' : 'the_file',
        'fileTypeExts' : '*.gif; *.jpg; *.jpeg; *.png',         
        'multi'    : true,          
        'uploader' : '/photo/savePhoto',
        'fileSizeLimit' : '10MB',
        'uploadLimit' : 50, 
        'onUploadStart' : function(file) {  
            $('#file_upload').uploadify('settings', 'formData', {'trip_id' :'1', 'trip_name' :'Sample Trip', 'destination_trip' :'Mumbai','user_id' :'1','email' :'s@s.com','city_id' :'12'});  
            },
        'onQueueComplete' : function(queueData) {
            console.log('queueData : '+queueData);
            window.location.href = "trip/details/1";
        }
    });
});

コントローラー

@RequestMapping(value="photo/{action}", method=RequestMethod.POST)
public String postHandler(@PathVariable("action") String action, HttpServletRequest request) {
if(action.equals("savePhoto"))
{   
        try{
    MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest)request;
    MultipartFile file = multipartRequest.getFile("the_file");
    String trip_id = request.getParameter("trip_id");
    String trip_name = request.getParameter("trip_name");
    String destination_trip = request.getParameter("destination_trip");
    String user_id = request.getParameter("user_id");
    String email = request.getParameter("email");
    String city_id = request.getParameter("city_id");
        photo.savePhoto(file,trip_id,trip_name,destination_trip,user_id,email,city_id);
    photo.updatetrip(photo_id,trip_id);
    }catch(Exception e ){e.printStackTrace();}
}
return "";
} **Solution** : Change the method return type as void and remove the return

春の設定

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

Web.xml は

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>project_name</display-name>
  <distributable/>
  <context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>classpath:log4j.properties</param-value>
  </context-param>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/project_name-servlet.xml,/WEB-INF/applicationContext-jdbc.xml</param-value>
  </context-param>
  <listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
  </listener>
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <servlet>
    <servlet-name>project_name</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>project_name</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <session-config>
    <session-timeout>60</session-timeout>
  </session-config>
</web-app>
4

3 に答える 3

1

たぶんtrip/details/1、アプリケーションにページがありませんか?

編集:

window.location.href = "trip/details/1";に変更

 window.location.href = "<%= request.getContextPath() %>/trip/details/1";
于 2012-10-08T15:16:30.647 に答える
0

ファイルがアップロードされます。値は DB に適切に保存されていますが、HTTP エラー 404 が発生しているだけです。

これは、リクエストが の URL に適切に送信さ'/photo/*' れ、postHandler() メソッドによって適切に処理されていることを示しています。

メソッドが誘導しようとしている URL を Web アプリケーションが処理できないため、404 が返され""ます。postHandler()

ほとんどの場合 (ここでいくつかの仮定を行っています。web.xml を含めていただけると助かります)、コントローラーが返す " " を処理するようにリクエスト マッパーが設定されていない可能性があります。コントローラが、有効なサーブレット マッピングを持つ何らかの意味のあるビュー名を返すようにすると、404 が返されなくなります。

于 2012-10-08T15:26:01.560 に答える