java - 文件上传在 spring mvc 和 tomcat6 中不起作用

标签 java spring-mvc file-upload tomcat6 tomcat8

我正在 spring mvc 和 tomcat6 中工作。我尝试上传一个文件并能够使用 tomcat8 进行 war 部署。

但是在使用与 tomcat6 部署相同的 war 时,我收到以下错误。

    org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'userId' is not present

我的完整代码如下,

在pom中添加jar

    <!-- Apache Commons Upload -->
    <dependency>
        <groupId>commons-fileupload</groupId>
        <artifactId>commons-fileupload</artifactId>
        <version>1.2.2</version>
    </dependency>

    <!-- Apache Commons Upload -->
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.0.1</version>
    </dependency>

在ApplicationContext.xml中添加了用于上传的bean

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

返回 userId 的 Controller

public class UploadDocController extends AbstractController {
@Resource
private UserService userService;


@Override
protected ModelAndView handleRequestInternal(HttpServletRequest request,
        HttpServletResponse response) throws Exception {

    Long userId = userService.getLoggedInUser(request).getId();

    ModelAndView modelAndView = new ModelAndView(UploadDocView.uploadmain);
    modelAndView.addObject("userId", userId);
    return modelAndView;
}

}

JSP:

    <form method="POST" enctype="multipart/form-data" action="upload.htm">
        File to upload: 
        <input type="file" name="file"><br /> 

        <input type="hidden" name="userId" value="${userId}"><br /> <br />

        <input type="submit" value="Upload">
    </form>

FileUploadController.java

    @Controller
    public class FileUploadController {

    @Resource
    private CollectionsRepository collectionsRepository;

    @RequestMapping(value="/upload", method=RequestMethod.GET)
        public @ResponseBody String provideUploadInfo() {
            return "You can upload a file by posting to this same URL.";
        }

        @RequestMapping(value="/upload.htm", method=RequestMethod.POST)
        public ModelAndView handleFileUpload(@RequestParam(value ="userId") String userId, 
                @RequestParam(value ="file") MultipartFile file){
            System.out.println("userId--------"+userId);
            if (!file.isEmpty()) {
                try {
                    String filePath = "/home/ubuntu/analyzer/LOS/";
                    byte[] bytes = file.getBytes();
                    File newFile = new File(filePath+""+file.getOriginalFilename());
                    BufferedOutputStream stream =
                            new BufferedOutputStream(new FileOutputStream(newFile));
                    stream.write(bytes);
                    stream.close();

                    List<BankStatementError> errorList = new ArrayList<BankStatementError>();

                    Excelsheetreader esr = new Excelsheetreader();
                    List<String> listaddSN = esr.GetCalculation(Long.parseLong(userId), filePath+""+file.getOriginalFilename());

                    newFile.delete();

                    for (int i = 0; i < listaddSN.size(); i++) {
                        String bank = listaddSN.get(i);
                        BankStatementError error = collectionsRepository.getErrorByBank(bank);
                        errorList.add(error);
                    }

                    ModelAndView modelAndView = new ModelAndView(UploadDocView.uploadsuccess);
                    modelAndView.addObject("errorList", errorList);
                    return modelAndView;
                } catch (Exception e) {
                    ModelAndView modelAndView = new ModelAndView(UploadDocView.uploadexecption);
                    return modelAndView;
                }
            } else {
                ModelAndView modelAndView = new ModelAndView(UploadDocView.uploadempty);
                return modelAndView;
            }
        }
    }

我收到的错误是

    org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'userId' is not present

还有其他方法可以使用 tomcat6 来做到这一点吗?希望有人对此提出建议。

提前致谢..

截图..

enter image description here

最佳答案

当您调用 jsp 文件时,参数未附加在您的响应中。

看-

<input type="hidden" name="userId" value="${userId}"><br /> <br />

您正在尝试访问userId的值,但您正在查找的参数可能不可用。

因此,在响应中添加参数可能会消除错误。

关于java - 文件上传在 spring mvc 和 tomcat6 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31957823/

相关文章:

Java正则表达式后视组没有明显的最大长度错误

java - 不允许加载本地资源: Why?

java - 在 Spring 框架上使用 @ModelAttribute ("myobject")访问服务器上的 JSON

php - Symfony2,文件上传 - 删除旧的并在编辑中创建新的

java - InputStream 在 Apache FileUpload API 中关闭

java - ie7图片上传问题

java - 两个线程在运行时如何通信?

java - java如何在配置键中生成时间值?

java - 如何使用java下载文件并将它们移动到目录?

java - 将 JavaScript 连接到 Java