Загрузка файла в Spring 3 MVC - исключение нулевого указателя - PullRequest
8 голосов
/ 13 февраля 2012

Я использую Spring MVC 3. Я пытался получить доступ к атрибутам загруженного файла, но получаю следующее сообщение об ошибке. Я могу получить доступ к другим полям опубликованной формы, но не могу получить доступ к загруженному файлу.

nullhandleForm - Failed to convert property value of type 'java.lang.String' to required type 
'org.springframework.web.multipart.commons.CommonsMultipartFile' for property 'file'; 
nested exception is java.lang.IllegalStateException: 
Cannot convert value of type [java.lang.String] to required type [org.springframework.web.multipart.commons.CommonsMultipartFile] 
for property 'file': no matching editors or conversion strategy found 

HTML / JSP файл

<%@page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
</head>
<body>
    <p>${Response}</p>   
    <h1>Upload Songs</h1>        
    <table>
        <form:form action="" commandName="handleForm">
        <tr>                
            <td>Song Name :</td>
            <td><form:input path="songName"/></td>                                        
        </tr>
        <tr>
            <td>Artist Name :</td>                        
            <td><form:input path="artistName"/></td>
        </tr>
        <tr>
            <td>Gendre :</td>                        
            <td><form:input path="gendre"/></td>
        </tr>
        <tr>
            <td>description :</td>
            <td><form:textarea path="description"/></td>

        </tr>
        <tr>
            <td>Browse File :</td>
            <td><form:input type="file" path="file" /></td>
        </tr>
        <tr>
            <td colspan="2" style="text-align: center"><input type="submit" value="submit" /></td>                        
        </tr>            
        </form:form>
    </table>        
</body>

Форма обработчика класса

public class HandleForm {

private String songName;
private String artistName;
private String gendre;
private String description;    
private CommonsMultipartFile file;


public CommonsMultipartFile getFile() {
    return file;
}

public void setFile(CommonsMultipartFile file) {
    this.file            = file;     
}

public String getArtistName() {
    return artistName;
}

public void setArtistName(String artistName) {
    this.artistName = artistName;
}

public String getDescription() {
    return description;
}

public void setDescription(String description) {
    this.description = description;
}

public String getGendre() {
    return gendre;
}

public void setGendre(String gendre) {
    this.gendre = gendre;
}

public String getSongName() {
    return songName;
}

public void setSongName(String songName) {
    this.songName = songName;
}  

}

Контроллер

@Controller
public class AdminController{   

@RequestMapping(value = "/admin", method = RequestMethod.GET)
public String showAdmin(){
    return "admin/index";
}


@RequestMapping(value = "/admin/upload-songs", method = RequestMethod.GET)
public String showContacts(Model model) {
    model.addAttribute(new HandleForm());
    return "/admin/upload";
}

@RequestMapping(value = "/admin/upload-songs", method = RequestMethod.POST)
public String doForm(@ModelAttribute(value = "handleForm") HandleForm handleForm, BindingResult result, Model model){

    if(result.hasErrors()){
        String stringList = null;
        List<FieldError> errors = result.getFieldErrors();
        for (FieldError error : errors ) {
            stringList += error.getObjectName() + " - " + error.getDefaultMessage() + "\n";
        }
        model.addAttribute("Response", stringList);
        //model.addAttribute("songname", handleForm.getSongName()); works fine
        //model.addAttribute("filename", handleForm.getFile().getOriginalFilename()); throws an error..?
    }       

    return "/admin/upload";
}

}

Любая помощь будет высоко ценится. Заранее спасибо

Ответы [ 2 ]

17 голосов
/ 13 февраля 2012

вам нужно добавить энктип в объявление формы?

enctype="multipart/form-data"
4 голосов
/ 13 августа 2012

Также убедитесь, что в вашем сервлете диспетчера есть распознаватель для файла Multipart

<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="100000"/>
</bean>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...