GWT + Spring MVC 文件下传例子备忘

GWT + Spring MVC 文件上传例子备忘


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>ct</display-name>
 <welcome-file-list>
  <welcome-file>index.html</welcome-file>
  <welcome-file>index.htm</welcome-file>
  <welcome-file>index.jsp</welcome-file>
  <welcome-file>default.html</welcome-file>
  <welcome-file>default.htm</welcome-file>
  <welcome-file>default.jsp</welcome-file>
 </welcome-file-list>
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:META-INF/spring/applicationContext.xml</param-value>
 </context-param>
 <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
 <listener>
  <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
 </listener>
 <servlet>
  <servlet-name>example</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath:META-INF/spring/applicationContext-mvc.xml</param-value>

  </init-param>
  <load-on-startup>1</load-on-startup>

 </servlet>
 <servlet-mapping>
  <servlet-name>example</servlet-name>
  <url-pattern>/test/*</url-pattern>
 </servlet-mapping>
 <!-- SpringGwt remote service servlet -->
 <servlet>
  <servlet-name>springGwtRemoteServiceServlet</servlet-name>
  <servlet-class>horse.hare.gwt.spring.SpringGwtRemoteServiceServlet</servlet-class>
  <load-on-startup>2</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>springGwtRemoteServiceServlet</servlet-name>
  <url-pattern>*.gwt</url-pattern>
 </servlet-mapping>
</web-app>


Spring配置
META-INF/spring/applicationContext.xml


<?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:aop="http://www.springframework.org/schema/aop"
 xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
 xmlns:jee="http://www.springframework.org/schema/jee" xmlns:mvc="http://www.springframework.org/schema/mvc"
 xsi:schemaLocation="
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
     http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
      http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
 default-autowire="byName">
 <context:annotation-config />
 <context:component-scan
  base-package="hare.service,hare.controller" />

</beans>

classpath:META-INF/spring/applicationContext-mvc.xml

<?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: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-3.0.xsd 
           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
 default-autowire="byName">
 <context:annotation-config />
 <context:component-scan base-package="com.longflang.controller" />
 <mvc:annotation-driven />
 <bean id="viewResolver"
  class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix" value="/WEB-INF/jsp/" />
  <property name="suffix" value=".jsp" />
 </bean>

 <bean id="multipartResolver"
  class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  <!-- one of the properties available; the maximum file size in bytes -->
  <property name="maxUploadSize" value="104857600" />
 </bean>

</beans>


hare.controller.DemoController

package hare.controller;

import hare.pojo.User;
import hare.service.TestService;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;

import org.springframework.jms.support.converter.MessageType;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import org.springframework.web.servlet.ModelAndView;


@Controller
@RequestMapping("/demo")
public class DemoController {

 
 public String processUpload(
   @RequestParam MultipartFile file,
   HttpServletRequest request,
   Model model) throws IOException {

  CommonsMultipartFile f;

  String message = "File '" + file.getOriginalFilename() + "' uploaded successfully";
  file.transferTo(new File("D:\\gwt\\upload\\" + file.getOriginalFilename()));
//  InputStream in = file.getInputStream();
//  FileOutputStream out =
//   new FileOutputStream("D:\\gwt\\upload\\" + file.getOriginalFilename());
//  int pos = 0;
//  byte[] bytes = new byte[4096];
//  while ((pos = in.read(bytes)) > 0) {
//   out.write(bytes);
//  }
//  out.close();
//  in.close();
  // prepare model for rendering success message in this request
  model.addAttribute("message", message);
 
  return "result";
 }
 
 private TestService testService;

 public TestService getTestService() {

  return testService;
 }

 public void setTestService(TestService testService) {

  this.testService = testService;
 }
}

\WEB-INF\jsp\result.jsp


<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<span style="color: red">${message}</span>

GWT form 代码:


public void onModuleLoad() {

  RootPanel rootPanel = RootPanel.get();

  final FormPanel formPanel = new FormPanel();
  formPanel.setSize(400, 300);
  FileUploadField up = new FileUploadField();
  up.setName("file");
  up.setFieldLabel("File");
  formPanel.setAction("test/demo/fileupload");
  formPanel.setMethod(Method.POST);
  formPanel.setEncoding(Encoding.MULTIPART);
  formPanel.add(up);
  Button button = new Button("upload");
  formPanel.addListener(Events.Submit, new Listener<FormEvent>() {

   @Override
   public void handleEvent(FormEvent be) {

    String html = be.getResultHtml();
    MessageBox.alert("信息", html, null);

   }
  });

  button.addSelectionListener(new SelectionListener<ButtonEvent>() {

   @Override
   public void componentSelected(ButtonEvent ce) {

    formPanel.submit();

   }
  });
  formPanel.addButton(button);
  rootPanel.add(formPanel);
 }