NoClassDefFoundError only happening when running code via command line

693 Views Asked by At

I'm getting an excception when I run this code via the command line. When I run it via the Eclipse IDE it runs fine, no exception. I can't figure out what's going on but it's definitely getting the exception at the Session statement.

public static void sendEmail(String sendFile) {
    // Send the log file via email.
    final String username = "[email protected]";
    final String password = "myPassword";

    // Strings that contain from, to, subject, body and file path to the attachment.
    String from = username;
    String to = username;
    String subject = "Baggage URL failures - Please check";
    String body = "FareDB Bad URL(s) Report. The following URL(s) could not be loaded...";
    String filename = sendFile;
    System.out.println("Mail header info set!");

    // Set smtp properties
    Properties properties = new Properties();
    properties.put("mail.smtp.starttls.enable", "true");
    properties.put("mail.smtp.auth", "true");
    properties.put("mail.smtp.host", "smtp.gmail.com");
    properties.put("mail.smtp.port", "587");
    System.out.println("SMTP properties set!");

    Session session = Session.getInstance(properties, null);
    System.out.println("Mail session declared!");

    try {
        MimeMessage message = new MimeMessage(session);
        message.setFrom(new InternetAddress(from));
        // Just me for testing
        message.setRecipient(Message.RecipientType.TO, new InternetAddress(username));
        message.setSubject(subject);
        message.setSentDate(new Date());
        System.out.println("Mail body info set!");

        // Set the email body
        MimeBodyPart messagePart = new MimeBodyPart();
        messagePart.setText(body);
        System.out.println("Mime message body set!");

        // Set the email attachment file
        MimeBodyPart attachmentPart = new MimeBodyPart();
        FileDataSource fileDataSource = new FileDataSource(filename) {
            @Override
            public String getContentType() {
                return "application/octet-stream";
            }
        };
        attachmentPart.setDataHandler(new DataHandler(fileDataSource));
        attachmentPart.setFileName(fileDataSource.getName());
        System.out.println("Mail attachment info set!");

        // Add all parts of the email to Multipart object
        Multipart multipart = new MimeMultipart();
        multipart.addBodyPart(messagePart);
        multipart.addBodyPart(attachmentPart);
        message.setContent(multipart);
        System.out.println("Mail parts added!");

        // Send email
        Transport.send(message);
        System.out.println("Mail sent!");
    } catch (MessagingException e) {
        e.printStackTrace();
    }
}

The error I get is only when it's run at the command line:

 Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/MailLogger
    at javax.mail.Session.initLogger(Session.java:221)
    at javax.mail.Session.<init>(Session.java:206)
    at javax.mail.Session.getInstance(Session.java:242)
    at VerifyUrl.sendEmail(VerifyUrl.java:186)
    at VerifyUrl.main(VerifyUrl.java:50)
 Caused by: java.lang.ClassNotFoundException: com.sun.mail.util.MailLogger
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
    ... 5 more

Any ideas what could be causing this?

2

There are 2 best solutions below

5
On

This is most common problem java developer faces.

  • Where java has package structure mechanism.
  • To run any java program which is using other package classes/interfaces/enums, you need to import it to class.
  • And If you are using external library or other packages then you need to set class path for that class in your case com.sun.mail.util.MailLogger.
  • where IDE like eclipse and IntellijIdea do packaging and setting classpath for you.
  • If you are trying to run above program or any other program you can follow syntax like

    java -cp /relative_path_to_your_dependency_jars ClassName

    In your case something like this.

    java -cp /downloadpath/javax.mail-1.5.0.jar YouMainClass

    similarly for compiling class

    java -cp /downloadpath/javax.mail-1.5.0.jar YouMainClass.java

0
On

This turned out to be a classpath issue and also using javax.mail instead of javax.mail-api.

Issue is solved now.