9.session-config :如果某個會話在一定時間內未被訪問,服務器可以拋棄它以節省內存。
可通過使用HttpSession的setMaxInactiveInterval方法明確設置單個會話對象的超時值,
或者可利用session-config元素制定缺省超時值。
<!-- session-config包含一個子元素session-timeout.定義web站台中的session參數. -->
<session-config>
<!-- 定義這個web站台所有session的有效期限.單位為分鐘. 例子中為600分鐘 -->
<session-timeout>600</session-timeout>
</session-config>
當session超時時,會調用httpSessionListener中的sessionDestroy()方法。