Reputation: 177
Thanks in advance. I have to send mail using spring. When i tried the code it shows following Bean Exception in my console.
Exception in thread "main" org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'mailSender' defined in class path resource [mail-simple.xml]:
Instantiation of bean failed;
nested exception is java.lang.ClassFormatError: Absent Code attribute in method that
is not native or abstract in class file javax/mail/MessagingException.
Caused by: java.lang.ClassFormatError: Absent Code attribute in method that
is not native or abstract in class file javax/mail/MessagingException
Can anyone please help me to find this problem?
Upvotes: 0
Views: 566
Reputation: 718798
I've never seen anything like this, but the exception seems to be saying that it is trying to load a malformed class file for javax.mail.MessagingException
. I suggest that you download a fresh copy of the JAR file that contains that class, etcetera.
Upvotes: 1