想法:我有一个Spring网络MVC操作应该完成其中一个或两个:
问题:Spring无法下载文件并在出现问题时重定向 - 某种方式flash属性不起作用,因为重定向中丢失了:
@ResponseBody
@RequestMapping(value = "/download/{fileaddress}", method = RequestMethod.GET)
public void download(HttpServletRequest request, HttpServletResponse response, @PathVariable(value = "fileaddress") String fileaddress) throws Exception
{
if(fileaddress != null && fileaddress.length() > 0)
{
try
{
// Get the remove file based on the fileaddress
RemoteFile remotefile = new RemoteFile(fileaddress);
// Set the input stream
InputStream inputstream = remotefile.getInputStream();
// Write the input stream to the output stream or throw an exception
Utils.writeTo(inputstream, response.getOutputStream());
}
catch(MyExceptionA)
{
// TODO: Define error message a and pass it to /addresses
// PROBLEM: Flash attributes that contain all critical error information don't work
response.sendRedirect(request.getContextPath() + "/addresses");
}
catch(MyExceptionB)
{
// TODO: Add another error message and redirect
response.sendRedirect(request.getContextPath() + "/addresses");
}
catch(MyExceptionC)
{
// TODO: Add another error message and redirect
response.sendRedirect(request.getContextPath() + "/addresses");
}
catch(MyExceptionN)
{
// TODO: Add another error message and redirect
response.sendRedirect(request.getContextPath() + "/addresses");
}
}
else
{
// TODO: Add error message
response.sendRedirect(request.getContextPath() + "/addresses");
}
}
/ addresses的JSP页面:
<%@ page pageEncoding="UTF-8" %>
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
<%@ taglib prefix="core" uri="http://java.sun.com/jsp/jstl/core" %>
<tags:index>
<jsp:attribute name="content">
<core:if test="${not empty error}">
<div class="alert alert-danger">
<p>${error}</p>
</div>
</core:if>
<p>Page under construction!</p>
</jsp:attribute>
</tags:index>
问题:我如何在/ addresses网站中显示错误消息(例如简单字符串)?使用不同的URL参数(error = errora,error = errorb ...)是一个巨大的痛苦,如果有多种错误类型并传递错误消息,因为GET参数看起来不专业并且是编码问题的根源。
答案 0 :(得分:8)
您需要的是RedirectAttributes
Model
的特化,控制器可以使用它来为重定向方案选择属性。
因此,对于一个工作示例,请参阅下面的代码:
@ResponseBody
@RequestMapping(value = "/download/{fileaddress}", method = RequestMethod.GET)
public Object download(@PathVariable(value = "fileaddress") String fileaddress, RedirectAttributes redirectAttrs) throws Exception {
if(StringUtils.hasText(fileaddress)){
try{
// Get the remove file based on the fileaddress
RemoteFile remotefile = new RemoteFile(fileaddress);
// Set the input stream
InputStream inputstream = remotefile.getInputStream();
// asume that it was a PDF file
HttpHeaders responseHeaders = new HttpHeaders();
InputStreamResource inputStreamResource = new InputStreamResource(inputStream);
responseHeaders.setContentLength(contentLengthOfStream);
responseHeaders.setContentType(MediaType.valueOf("application/pdf"));
return new ResponseEntity<InputStreamResource> (inputStreamResource,
responseHeaders,
HttpStatus.OK);
} catch (MyExceptionA | MyExceptionB | MyExceptionC | MyExceptionD ex) {
redirectAttrs.addFlashAttribute("error", ex.getMessage());
}
} else {
redirectAttrs.addFlashAttribute("error", "File name is required");
}
return "redirect:/addresses";
}
答案 1 :(得分:2)
更新:我认为问题是关于RedirectAttributes
不可用的情况,否则,解决方案非常明显(使用RedirectAttributes
)。
Orignal回答:
在Spring不支持RedirectAttributes
的情况下(例如在ExceptionHandler
方法中),我使用以下代码将消息绑定到Flash地图:
public static Feedback getInstance(HttpServletRequest request, HttpServletResponse response) throws IllegalArgumentException {
FlashMap flashMap = RequestContextUtils.getOutputFlashMap(request);
Object o = flashMap.get(KEY);
if (o != null) {
if (o instanceof Feedback) {
return Feedback.class.cast(o);
} else {
throw new IllegalArgumentException(...);
}
} else {
FeedbackContainer feedbackContainer = new FeedbackContainer();
flashMap.put(KEY, feedbackContainer);
FlashMapManager flashMapManager = RequestContextUtils.getFlashMapManager(request);
flashMapManager.saveOutputFlashMap(flashMap, request, response);
return feedbackContainer;
}
其中Feedback
/ FeedbackContainer
是消息的容器,然后通过JSON序列化在JPS中访问。在您的情况下,您可以使用带有键“error”的字符串,并直接在JSP中访问它:
void storeErrorMsg(HttpServletRequest request, HttpServletResponse response, String message) {
FlashMap flashMap = RequestContextUtils.getOutputFlashMap(request);
flashMap.put("error", message);
FlashMapManager flashMapManager = RequestContextUtils.getFlashMapManager(request);
flashMapManager.saveOutputFlashMap(flashMap, request, response);
}
使用我自己的消息容器的主要原因是可能有多个不同级别的消息和getInstance
,RedirectAttributes
或Model
的其他ModelMap
方法,所以我不必关心重复的反馈绑定和/或不同的绑定代码。
答案 2 :(得分:1)
我无法解释为什么它没有从服务器下载文件但是进入第二个查询,你可以通过两种方式重定向,或者将你的方法返回类型作为ModelAndView并且这样做
ModelAndView mav = new ModelAndView("write here your jsp page name even is will work for remote server");
try {
mav.addObject("some key","here you can write any message that will you can show in your jsp page..");
然后返回mav。 像这样你可以重定向你想要的页数。如果条件。
和第二种方法你可以把你的方法返回类型字符串,你可以直接重定向到你需要的jsp。
答案 3 :(得分:0)
我建议采用以下方法: 由于您有一些远程文件作为输入流,因此无法从发生异常的位置读取它。因此,您可以通过首先将文件下载到本地主机上的临时文件夹来减少错误机会。
如果出现错误,您可以按照建议重定向,也可以在多次尝试失败后再次尝试重定向。这样,在确定文件已成功下载之前,您不会向流中写入任何内容。
将文件下载到服务器后,您可以将其传递给客户端。例如,您可以读取字节并保存当前位置。假设在写入流的过程中存在异常。您可以从中间读取失败点的写入。
一个小例子
...
final String localFileName = saveFileLocally(fileaddress)
if (localFileName == null) {
response.sendRedirect(request.getContextPath() + "/addresses");
} else {
safeWrite(new BufferedInputStream(new FileInputStream(new File(localFileName))), response.getOutputStream());
}
...
safeWrite
应支持从文件中间读取的本地文件读取异常处理。这种操作应该有标准的java api。