我尝试从我的struts应用程序发送测试邮件。我有一个简单的jsp页面和对应该页面的动作,我下载了一个简单的代码来发送电子邮件,代码如下。
package java4s;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class mailtest {
public static void main(String[] args) {
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class",
"javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("snapshareadm@gmail.com","********");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("snapshareadm@gmail.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("justinpayyans@gmail.com"));
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);
}
}
}
此代码也正在发送邮件。我已将其更改为类,以便我可以创建一个对象并从我的操作中调用该函数。如下所示
public class mailtest
{
void mailSend()
{
//Same code as above
}
}
但是当我在我的动作页面中创建这个类的对象时,它给了我一个例外,如下所示。
根本原因
java.lang.NoClassDefFoundError: javax/mail/MessagingException
java4s.mailsender.execute(mailsender.java:50) //on this line i've created object of the mailtest class
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
java.lang.reflect.Method.invoke(Unknown Source)
希望您理解,如果您需要,请发表评论以获得更多说明..
答案 0 :(得分:1)
首先,修复所有这些common mistakes。
我猜你没有在Java EE应用服务器上运行; Java EE应用程序服务器包括JavaMail作为标准部分。
如果您只是在Tomcat中运行,那么您需要将JavaMail jar文件提供给您的应用程序,方法是将其放在war文件的WEB-INF / lib目录中,或放入它在Tomcat's lib directory。