This question is really not a CORE question but I think this is the best category for it.
I thought I would try out the Spring mail interface. When I run my code I get the folowing exception
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/SharedByteArrayInputStream
at org.springframework.mail.javamail.JavaMailSenderIm pl.createMimeMessage(JavaMailSenderImpl.java:241)
at org.springframework.mail.javamail.JavaMailSenderIm pl.send(JavaMailSenderImpl.java:201)
at org.springframework.mail.javamail.JavaMailSenderIm pl.send(JavaMailSenderImpl.java:190)
what is throwing me off is why I am seeing a dependency on a com.sun package. If this class is really required where do I get it.
Thanks


Reply With Quote