英文:
Session expire during data saving to database
问题
我正在尝试上传一个 Excel 文件并将其数据保存到数据库中。这个 Excel 文件包含 4690 行数据,在数据插入数据库时会话已过期。在我的 web.xml
文件中,我已经添加了以下内容。
<session-config>
<session-timeout>15</session-timeout>
</session-config>
我需要延长这个特定页面的会话时间。
英文:
I am trying to upload an excel file and save its data to database. The excel contain 4690 rows of data, the session is expired during data is inserting to the data base. In my web.xml
file i had added these lines.
<session-config>
<session-timeout>15</session-timeout>
</session-config>
I need to extend session of this particular page.
答案1
得分: 1
你可以在你的Java代码中设置会话超时时间,以覆盖默认超时时间:
request.getSession().setMaxInactiveInterval(timeoutInSeconds);
这对你是否可行?请告诉我!
英文:
You can set the session timeout in your javacode to override the default timeout:
request.getSession().setMaxInactiveInterval(timeoutInSeconds);
Can that be a workable solution for you? Please let me know!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论