Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I fix ClassNotFoundException: com.sun.mail.util.MailLogger?

I want to send email, My code is below

public static void main(String[] args) {

    final String username = "[email protected]";
    final String password = "password";

    Properties props = new Properties();
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable", "true");
    props.put("mail.smtp.host", "smtp.gmail.com");
    props.put("mail.smtp.port", "587");

    Session session = Session.getInstance(props,
      new javax.mail.Authenticator() {
        protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication(username, password);
        }
      });

    try {

        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress("[email protected]"));
        message.setRecipients(Message.RecipientType.TO,
            InternetAddress.parse("[email protected]"));
        message.setSubject("Testing Subject");
        message.setText("Dear Mail Crawler,"
            + "\n\n No spam to my email, please!");

        Transport.send(message);

        System.out.println("Done");

    } catch (MessagingException e) {
        throw new RuntimeException(e);
    }
}

POM.xml

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

But getting exception

Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/MailLogger
at javax.mail.Session.initLogger(Session.java:230)
at javax.mail.Session.<init>(Session.java:214)
at javax.mail.Session.getInstance(Session.java:251)
at com.smart21.spring.utils.MailTest.main(MailTest.java:26)
Caused by: java.lang.ClassNotFoundException: com.sun.mail.util.MailLogger
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
like image 515
Rajaa Avatar asked Jul 25 '17 19:07

Rajaa


3 Answers

Try changing from:

<groupId>javax.mail</groupId>

to:

<groupId>com.sun.mail</groupId>
like image 101
Kohei TAMURA Avatar answered Nov 11 '22 05:11

Kohei TAMURA


This is a duplicate of the issue in java.lang.NoClassDefFoundError: com/sun/mail/util/MailLogger for JUnit test case for Java mail and the answer that worked for me:

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

See https://stackoverflow.com/a/16808343/1355930

like image 22
Ashley Frieze Avatar answered Nov 11 '22 04:11

Ashley Frieze


The solution is to use correct dependency. For gradle:

// https://mvnrepository.com/artifact/javax.mail/mail
compile group: 'javax.mail', name: 'mail', version: '1.5.0-b01'
like image 33
Jackkobec Avatar answered Nov 11 '22 03:11

Jackkobec