내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

WCMUsePojo in AEM6.3 not working

Avatar

Level 3

Hi All,

I have created a class which extends WCMUsePojo. But it's not working, it is giving following error.

com.adobe.cq.sightly.WCMUsePojo Failed to activate Use class

java.lang.NullPointerException: null

This is the code:

import com.adobe.cq.sightly.WCMUsePojo;

public class TestUse extends WCMUsePojo {

     String text;

   

    @Override

    public void activate() throws Exception {

    text = get("text", String.class);

        log.debug("Text: {}", text);

        log.info("--- Started : : Activate");       

    }

    public String getText (){

        return this.text;

    }   

}

I have also included uber.jar in the pom.and the bundle is in the active state.

Please help me to resolve this issue.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 3

Thanks All, the issue is solved. The acs-commons bundle is causing the issue because of twitter dependency. It is working fine after adding twitter bundle and restarting the core bundle.

원본 게시물의 솔루션 보기

9 답변 개

Avatar

Level 8

I think it is because of log.debug. I don't see creating an instance for the Logger class in your code.

Avatar

Level 10

code will not compile if that's the case

Avatar

Level 10

You should be seeing line no where NPE is occuring, can you check?

Also is that the complete code?

Make sure you bundle is resolved in felix

Avatar

Community Advisor

Avatar

Level 8

How are you deploying bundle ? are you deploying through Felix console ? or did use CRXDE to create a class? please post entire code?

Try below code : to read value from dialog we should use below code

getProperties().get("text", String.class);

I think get is used when you pass a parameter from sightly. this caused null pointer exception

get("text", String.class);

Avatar

Level 10

Hi Prashanth,

Have you checked this article which tells how to use WCMUsePojo class

Adobe Experience Manager Help | Creating an Adobe Experience Manager HTML Template Language componen...

Thanks,

Ratna Kumar.

Avatar

Employee

Can you share the full stacktrace? And also the code seems not to be complete.

Avatar

정확한 답변 작성자:
Level 3

Thanks All, the issue is solved. The acs-commons bundle is causing the issue because of twitter dependency. It is working fine after adding twitter bundle and restarting the core bundle.

Avatar

Employee

Good to hear, although I can't see how this bundle can affect this.