Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google App Engine 中的默认会话超时是多少?如何在 Struts 2 应用程序中的 Google App Engine 中设置会话超时。GAE 会议上有任何参考/文档吗?谢谢
会话超时设置应通过标准方式完成,web.xml并且 App Engine 理想情况下会承认它。
web.xml
例如
<session-config> <session-timeout>30</session-timeout> </session-config>
这会将超时设置为 30 分钟。