활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
I have imported the below package in my sling servlet but getting below errors, please help to resolve the issue. I am using AEM 6.4
import javax.mail.internet.InternetAddress;
Error
package javax.mail.internet does not exist
class file for javax.mail.MessagingException not found
In POM.xml used the below dependency
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
</dependency>
해결되었습니다! 솔루션으로 이동.
Could you please confirm if you have added this dependency in parents pom and core pom?
in core package add a dependency in POM without version and in parent pom with version.
Parent POM:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
</dependency>
Core POM:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
~ Prince
조회 수
답글
좋아요 수
This can happen when the particular dependency is not available in your felix console. You can go to http://localhost:4502/system/console/depfinder
and find the dependencies available . When I check the depfinder for javax.mail , I can find below dependency available.
조회 수
답글
좋아요 수
Could you please confirm if you have added this dependency in parents pom and core pom?
in core package add a dependency in POM without version and in parent pom with version.
Parent POM:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
</dependency>
Core POM:
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
~ Prince
조회 수
답글
좋아요 수
Check this package on your depfinder - i am seeing it fine:
http://localhost:4502/system/console/depfinder
조회 수
답글
좋아요 수
This one is also correct answer Thanks a lot
조회 수
답글
좋아요 수