springboot - 异常 - 邮件The type javax.mail.internet.MimeMessage cannot be resolved. It is indirectly

The type javax.mail.internet.MimeMessage cannot be resolved. It is indirectly referenced from required .class files

pom加:

<dependency>
  <groupId>javax.mail</groupId>
  <artifactId>javax.mail-api</artifactId>
</dependency>

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

<!-- https://mvnrepository.com/artifact/javax.mail/mail -->
<dependency>
    <groupId>javax.mail</groupId>
    <artifactId>mail</artifactId>
    <version>1.4.7</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/sinat_32238399/article/details/81907116