一尘不染

Spring Boot 1.2.5.RELEASE-通过Gmail SMTP发送电子邮件

spring-boot

首先,我要说的是使用1.2.0.RELEASE发送电子邮件可以正常工作

application.properties:

spring.mail.host = smtp.gmail.com
spring.mail.username = *****@gmail.com
spring.mail.password = ****
spring.mail.properties.mail.smtp.auth = true
spring.mail.properties.mail.smtp.socketFactory.port = 465
spring.mail.properties.mail.smtp.socketFactory.class = javax.net.ssl.SSLSocketFactory
spring.mail.properties.mail.smtp.socketFactory.fallback = false

pox.xml

<parent>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-parent</artifactId>
     <version>1.2.0.RELEASE</version>
     <relativePath/>
</parent>

.......

<dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

将父版本更改为1.2.5之后。RELEASE电子邮件发送不起作用

Docs说: 如果spring.mail.host和相关的库(由spring-boot-starter-
mail定义)可用,则如果不存在默认JavaMailSender,则会创建一个默认JavaMailSender。

所以我加了

<dependency>
    <groupId>javax.mail</groupId>
    <artifactId>mail</artifactId>
    <version>1.4.7</version>
</dependency>

它没有帮助,然后我将其替换为

<dependency>
    <groupId>com.sun.mail</groupId>
    <artifactId>javax.mail</artifactId>
    <version>1.5.4</version>
</dependency>

我也尝试过

spring.mail.host = smtp.gmail.com
spring.mail.username = *****@gmail.com
spring.mail.password = ****
spring.mail.port = 465

结果相同。

手动创建和配置@Bean并不是问题。但是我想使用Spring Boot的所有优点。
请指出我的错误。

提前致谢


阅读 440

收藏
2020-05-30

共1个答案

一尘不染

看起来Java
Mail中存在回归/行为更改。更改同时在1.5.3和1.5.4中进行。您的应用程序使用Java
Mail 1.5.2,因此可以与Boot 1.2.0一起使用。由于它使用Java Mail 1.5.4,因此在Boot 1.2.5中失败。

1.5.3+中的问题似乎是SMTP传输在端口465上连接,并且GMail需要SSL握手。Java
Mail错误地认为它没有使用SSL,因此它从不发起握手并且连接尝试(最终)超时。您可以通过明确使用SSL来说服Java
Mail做正确的事。将以下内容添加到application.properties

spring.mail.properties.mail.smtp.ssl.enable = true
2020-05-30