我想使用为我的测试用例嵌入的Jetty 9(v9.2.12.v20150709)。 但是我无法以编程方式更改HTTP-Session-Timeout。
此致电webapp.getSessionHandler().getSessionManager().setMaxInactiveInterval(timeoutInSeconds);
似乎无效。
这是减少代码段落,它显示了我的所作所为:
import java.io.IOException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.client.api.ContentResponse;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.webapp.WebAppContext;
@SuppressWarnings("javadoc")
public class EmbeddedJetty
{
@SuppressWarnings("serial")
public static class TimeoutServlet extends HttpServlet
{
@Override
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws IOException
{
// return the value of the currently used HTTP-Session Timeout
response.setContentType("text/html");
response.setStatus(HttpServletResponse.SC_OK);
response.getWriter().println("<h1>Timeout: " + request.getSession()
.getMaxInactiveInterval() + "</h1>");
}
}
public static void main(String[] args) throws Exception
{
// the custom timeout, which I am trying to set
int timeoutInSeconds = 1234;
Server server = new Server(0);
WebAppContext webapp = new WebAppContext();
webapp.setContextPath("/");
webapp.setResourceBase(System.getProperty("user.dir"));
// Can't set custom timeout. Following Statement doesn't work.
webapp.getSessionHandler().getSessionManager().setMaxInactiveInterval(
timeoutInSeconds);
server.setHandler(webapp);
webapp.addServlet(TimeoutServlet.class.getName(), "/*");
server.start();
// get current URL of the server
String url = server.getURI().toString();
System.out.println("\n URL: " + url);
// server.dumpStdErr();
// make a request to get the used timeout setting
HttpClient httpClient = new HttpClient();
httpClient.start();
ContentResponse response = httpClient.GET(url);
httpClient.stop();
String timeoutInfo = response.getContentAsString();
System.out.println(timeoutInfo);
// check if the custom timeout is used
if( timeoutInfo.contains(String.valueOf(timeoutInSeconds)) )
{
System.out.println("Custom Timeout is used.");
}
else
{
// Unfortunately, I get the default(?) everytime
System.out.println("Default Timeout? Custom Value is NOT used.");
}
System.out.println("Press Enter to exit ...");
System.in.read();
server.stop();
server.join();
}
}
我正在使用WebAppContext
- 设置样式,因为这样我就可以使用ServletContextListener
让我的WebAppContext.addEventListener()
工作了。我使用ServletHandler
无法开展工作。
我也使用Jetty的9.2.12.v20150709版,因为它与Selenium v2.5.2
(支持Java 7(项目要求))的Classpath兼容。)
你有什么建议吗,我做错了什么?
感谢您的时间。
答案 0 :(得分:2)
WebAppContext有一些默认值,在server.start()
(WebAppContext.startContext()
)期间加载。
这些默认值还包含位于/org/eclipse/jetty/webapp/webdefault.xml
下的jetty-webapp.jar中的DefaultWebDescriptor。此描述符包含session-config
,它将超时设置为默认值30米(1800秒)。
要覆盖默认值,必须在服务器启动后调用setMaxInactiveInterval()
:
server.start();
webapp.getSessionHandler().getSessionManager().setMaxInactiveInterval(timeoutInSeconds);
或者为了避免这些默认设置,最好使用ServletContextHandler
。