Servlet第七篇【常见问题】

解决中文乱码问题

解决中文乱码问题

自定义404和500页面

    <!--web.xml配置-->
    <error-page>
        <error-code>404</error-code>
        <location>/404.html</location>
    </error-page>

    <error-page>
        <error-code>500</error-code>
        <location>/500.html</location>
    </error-page>

自定义欢迎页

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

设置Session过期时间

    <!--在web.xml设置,设置过期时间为10分钟,默认是30分钟-->
    <session-config>
        <session-timeout>10</session-timeoout>
    </session-config>
posted @ 2020-09-18 17:43  幻竹  阅读(168)  评论(0)    收藏  举报