我是新來的春天。我有一個控制器與一個RequestMapping幾個GET參數。他們返回一個字符串。 但是有一種方法需要在「/ res /」文件夾中返回一個文件。我怎麼做?從控制器返回一個文件在春天
@RequestMapping(method = RequestMethod.GET,value = "/getfile")
public @ResponseBody
String getReviewedFile(@RequestParam("fileName") String fileName)
{
return //the File Content or better the file itself
}
感謝
見回答: http://stackoverflow.com/questions/5673260/downloading-a- file-from-spring-controllers –
這是哪種類型的文件? –