java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/mail/MessagingException

后端 未结 5 1005
粉色の甜心
粉色の甜心 2020-12-09 08:54

I have a maven dependency for javaee Bibliothek.


    javax
    javaee-api         


        
5条回答
  •  庸人自扰
    2020-12-09 09:36

    Weird but the following order works for me,

        
            javax.mail
            mail
            1.4
        
    
        
            javax
            javaee-web-api
            6.0
            provided
        
    

    The reverse won't work.

提交回复
热议问题