4

我正在尝试使用 REST 服务使用 html 和 Spring 3.0.6 设置简单的上传。我已经按照在线教程进行操作,但 MultipartFile 参数始终为空。这是配置和代码:

应用程序上下文.xml:

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

pom.xml:

<dependency>
  <groupId>commons-io</groupId>
  <artifactId>commons-io</artifactId>
  <version>2.1</version>
</dependency>
<dependency>
  <groupId>commons-fileupload</groupId>
  <artifactId>commons-fileupload</artifactId>
  <version>1.2.2</version>
</dependency>

html:

<html>
    <head>
        <title>Upload a file please</title>
    </head>
    <body>
        <h1>Please upload a file</h1>
        <form method="post" action="/site/restServices/artworkUpload/" enctype="multipart/form-data">
            <input type="text" name="name"/>
            <input type="file" name="file"/>
            <input type="submit"/>
        </form>
    </body>
</html>

休息控制器:

@POST
@Path("/artworkUpload")
public String uploadFile(@RequestParam("name") String name,
    @RequestParam("file") MultipartFile file) {
    try {
        if (!file.isEmpty()) {
            byte[] bytes = file.getBytes();
            // store the bytes somewhere
            return "redirect:uploadSuccess";
        } else {
            return "redirect:uploadFailure";
        }
    }
    catch (Exception ex)
    {

    }
    return null;
}

我从 Spring 的教程中复制了示例,但无论我更改什么,文件参数始终为空。“名称”将在文本框中具有值,但文件将为空。

我也尝试过使用 Jersey,我收到了文件的 InputStream,但 FormDataContentDisposition 为空,所以我无法确定文件类型。

这也在 Jetty 上运行。

我错过了什么?

4

2 回答 2

4

我记得我通过将额外的库添加到我的构建路径来解决相同的问题:

commons-fileupload-1.2.2.jar
commons-io-2.1.jar

我希望这能帮到您。

编辑。

好的。我终于有时间解决这个问题了。首先,为什么要使用标准的 java 特性来构建 rest 服务(注解 @POST、@Path)?因为对于 Spring,最好将 Spring MVC 期货用于 REST。互联网上有很多关于此的信息。这是 参考文档中的特殊部分。这也是IBM 网站上的好文章在Spring in Action (last 3-d edition) 中也很好地描述了如何使用 Spring MVC 构建 REST 控制器。

这里我如何实现简单的文件上传功能:

休息控制器:

@Controller
@RequestMapping("/rest/files")
public class FilesController {
        ...

        @RequestMapping(value="/rest/files", method=RequestMethod.POST)
        public String uploadFile(@RequestParam("name") String name,
                @RequestParam("file") MultipartFile file) {
            try {
                if (!file.isEmpty()) {
                    byte[] bytes = file.getBytes();
                    // store the bytes somewhere
                    return "redirect:uploadSuccess";
                } else {
                    return "redirect:uploadFailure";
                }
            }
            catch (Exception ex)
            {

            }
            return "/testFileDownload";
        }
}

html:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test file upload</title>
</head>
<body>
    <h1>Please upload a file</h1>
    <form method="post" action="rest/files" enctype="multipart/form-data">
        <input type="text" name="name" /> <input type="file" name="file" /> <input
            type="submit" />
    </form>
</body>
</html>

在 dispatcher-servlet.xml 中查看解析器配置:

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="mediaTypes">
            <map>
                <entry key="file" value="multipart/form-data"/>
                <entry key="html" value="text/html"/>
            </map>
        </property>
        <property name="viewResolvers">
            <list>
                <bean class="org.springframework.web.servlet.view.BeanNameViewResolver"/>
                <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
                    <property name="prefix" value="/WEB-INF/views/"/>
                    <property name="suffix" value=".jsp"/>
                </bean>
            </list>
        </property>
    </bean>

我希望我没有浪费我的时间,这对你来说仍然是必要的。)

编辑 2

这是一个非常好的教程,其中描述了如何使用 Spring 3.1 构建 RESTful Web 服务。

于 2012-07-06T10:05:06.210 回答
1

它帮助我连接了这个库:

 <dependency>
        <groupId>jstl</groupId>
        <artifactId>jstl</artifactId>
        <version>1.2</version>
    </dependency>

所有库:

<dependencies>
    <!-- Spring 3 MVC  -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>3.1.2.RELEASE</version>
    </dependency>
    <!-- Apache Commons file upload  -->
    <dependency>
        <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
        <version>1.2.2</version>
    </dependency>
    <!-- Apache Commons IO -->
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.3.2</version>
    </dependency>
    <!-- JSTL for c: tag -->
    <dependency>
        <groupId>jstl</groupId>
        <artifactId>jstl</artifactId>
        <version>1.2</version>
    </dependency>
</dependencies>

http://viralpatel.net/blogs/spring-mvc-multiple-file-upload-example/

于 2013-08-14T09:43:40.583 回答