【发布时间】:2016-08-12 15:49:27
【问题描述】:
我正在使用Jodd Email 库来发送和接收电子邮件。使用 Jodd SmtpServer 我可以设置连接超时。我试图阅读文档,但我没有找到任何东西。我想用 Imap 或 Pop3 设置超时。
【问题讨论】:
我正在使用Jodd Email 库来发送和接收电子邮件。使用 Jodd SmtpServer 我可以设置连接超时。我试图阅读文档,但我没有找到任何东西。我想用 Imap 或 Pop3 设置超时。
【问题讨论】:
只需扩展例如ImapServer 类并像这样覆盖createSessionProperties 方法:
public class MyImapServer extend ImapServer {
...
protected Properties createSessionProperties() {
Properties props = super.createSessionProperties()
props.setProperty("mail.imap.connectiontimeout", 123);
return props;
}
}
随着迁移到 Java8,这将变得更加容易,因为我们将为会话属性提供一些流畅的接口。
Timeout 比较常用,我们也可以直接添加支持。
【讨论】: