3

我的 jetty-servlet-context.xml 中有那行代码

<bean id="jerseyServletCtx" class="org.eclipse.jetty.servlet.ServletContextHandler">
        <property name="displayName" value="Jersey Servlet Context"/>
        <property name="contextPath" value="/rest"/>
        <property name="sessionHandler">
            <bean class="org.eclipse.jetty.server.session.SessionHandler"/>
        </property>
...

如何在我的 xml 文件中添加设置 maxInactiveInterval 的功能?也许我错过了一些东西,它可能在其他任何地方而不是那个 jerseyServletCtx,但它应该在 jetty-servlet-context.xml。欢迎任何想法。

PS:我没有 web.xml

4

1 回答 1

0

您的问题已经存在将近一年了,但如果它可能对您或其他人有所帮助:您可能需要查看webdefault.xml并检查session-timeout会话配置部分中的元素。

于 2014-02-12T00:44:52.760 回答