web-dev-qa-db-ja.com

ClassNotFoundException:com.Sun.mail.util.MailLoggerを修正するにはどうすればよいですか?

メールを送信したいのですが、コードは以下のとおりです

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>

しかし例外を得る

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)
4
Prince

次から変更してみてください:

<groupId>javax.mail</groupId>

に:

<groupId>com.Sun.mail</groupId>
5
Kohei TAMURA

OracleのWebサイトからactivation.jarおよびmail.jarを取得してみてください。これは、エラーClassNotFoundException: com.Sun.mail.util.MailLoggerを解決するのに役立ちます。

0
Yoshita Mahajan

これは Java.lang.NoClassDefFoundError:com/Sun/mail/util/MailLogger for JUnit test case for Java mail の問題とその答えの複製です。私のために働いた:

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

https://stackoverflow.com/a/16808343/13559 を参照してください

0
Ashley Frieze

解決策は、正しい依存関係を使用することです。 Gradleの場合:

// https://mvnrepository.com/artifact/javax.mail/mail
compile group: 'javax.mail', name: 'mail', version: '1.5.0-b01'
0
Jackkobec