gpt4 book ai didi

java - Spring MVC 上传大文件后 session 属性丢失

转载 作者:行者123 更新时间:2023-12-01 14:32:03 27 4
gpt4 key购买 nike

我的 Spring MVC 应用程序的功能之一是上传大文件(大约 500MB),这些文件应该稍后处理。

Controller 是:

@RequestMapping("/folderManagement/")
@Controller("FolderFormController")
@SessionAttributes({ "tabTitle", "selectedFolder" })
public class FolderFormController {
@RequestMapping(method = RequestMethod.GET, value = FOLDER_FORM)
protected ModelAndView showFolderManager(@RequestParam(value = "selectedFolderId", required = false) Long selectedFolderId,
@RequestParam(value = "selectedDocId", required = false) Long selectedDocId, HttpServletRequest request, HttpServletResponse response) throws Exception {
// Generates the page attributes
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName(FOLDER_FORM_VIEW);

return modelAndView;
}

@RequestMapping(value = UPLOAD_FILES, method = RequestMethod.POST)
public ModelAndView postUploadFile(HttpServletRequest request, @ModelAttribute("uploadItem") UploadItem upitem, @ModelAttribute("selectedFolder") FolderForm root, BindingResult result,
SessionStatus status, ModelAndView modelAndView) {
// Process upitem
Log.debug("INIT");
}

}

UploadItem 是一个内部有 CommonsMultipartFile (org.springframework.web.multipart.commons) 的对象。

通常工作正常。无论文件大小(甚至 800MB),也无论处理时间长短。但是,有时用户会遇到以下异常:

org.springframework.web.HttpSessionRequiredException: Expected session attribute 'selectedFolder'
at org.springframework.web.method.annotation.ModelFactory.initModel(ModelFactory.java:103)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:614)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:578)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:789)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptorFilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:118)
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:84)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:113)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:103)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.java:150)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:183)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:105)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87)
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342)
at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192)
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160)
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:259)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:448)
at org.apache.coyote.ajp.AjpAprProtocol$AjpConnectionHandler.process(AjpAprProtocol.java:403)
at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1703)
at java.lang.Thread.run(Thread.java:662)

这个异常是通过这个方法捕获的:

@ExceptionHandler({ Exception.class})
public ModelAndView handleExceptionArray(Exception ex) {
Log.error("Recogida excepcion " + ex.getClass().getSimpleName(), ex);
String errorMessage = "Internal error";
ModelAndView modelAndView = new ModelAndView();
// modelAndView.setViewName("error/error");
modelAndView.addObject("name", "");
modelAndView.addObject("exception", errorMessage);

modelAndView.setViewName("redirect:" + FolderFormController.getRedirectUrl());
saveError(modelAndView, errorMessage);
return modelAndView;
}

此外,日志“INIT”没有被打印,因此它没有进入 Controller 方法。

发生什么事了?更重要的是,我怎样才能避免这种情况?有什么想法吗?

更新:原因

嗯,看来原因是用户 session 过期。 Tomcat 的过期时间为 30 分钟。如果上传时间超过这个时间,那么它就无法到达我的 Controller 。有什么办法可以避免 session 丢失吗?

最佳答案

您已经发现这一定是 session 超时的问题,很好。如果在上传开始后没有新请求到达特定 session ,则视为“无 Activity ”,这在您的情况下是不正确的。

有几种方法可以解决这个问题:

web.xml

增加web.xml中的超时,Tomcat中的默认值为30'(即如果web.xml中未指定)。

<session-config>
<session-timeout>45</session-timeout>
</session-config>

但是,这可能并不理想,因为根据经验,超时应该“尽可能低”——无论这意味着什么。我们通常使用5'。

更改 session

您可以将常规 session 超时设置为 5',但在上传开始后使用 HttpSession#setMaxInactiveInterval 增加该超时:

Specifies the time, in seconds, between client requests before the servlet container will invalidate this session. A negative time indicates the session should never timeout.

但是,如果您的 Controller 甚至没有被调用,则必须在 Spring 之前完成。最佳候选者是 ServletFilter

AJAX

上传提交后立即从客户端发起心跳请求。然后循环重复心跳。如果 session 超时为 5',您可以使用 4' 的心跳间隔。

关于java - Spring MVC 上传大文件后 session 属性丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16798401/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com