报错:
package javax.mail does not exist
package javax.mail.internet does not exist
cannot find symbol
symbol: class PasswordAuthentication
symbol: class Authenticator
解决方案:
把这个加到pom就行了:
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.2</version>
</dependency>