use of me.chanjar.weixin.common.session.StandardSessionManager in project weixin-java-tools by chanjarster.
the class WxCpMessageRouterTest method standardSessionManager.
@DataProvider
public Object[][] standardSessionManager() {
// 故意把session存活时间变短,清理更频繁
StandardSessionManager ism = new StandardSessionManager();
ism.setMaxInactiveInterval(1);
ism.setProcessExpiresFrequency(1);
ism.setBackgroundProcessorDelay(1);
return new Object[][] { new Object[] { ism } };
}
use of me.chanjar.weixin.common.session.StandardSessionManager in project weixin-java-tools by chanjarster.
the class WxMpMessageRouterTest method standardSessionManager.
@DataProvider
public Object[][] standardSessionManager() {
// 故意把session存活时间变短,清理更频繁
StandardSessionManager ism = new StandardSessionManager();
ism.setMaxInactiveInterval(1);
ism.setProcessExpiresFrequency(1);
ism.setBackgroundProcessorDelay(1);
return new Object[][] { new Object[] { ism } };
}
Aggregations