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

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

Mark Solution

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

해결됨

Invoke WCMUse Class from Servlet

Avatar

Level 8

Is it possible to use a class which extends WCMUse from inside of a servlet?  If so, are there any examples available?

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

No..., at least this is not the intended way of using WCMUse...

원본 게시물의 솔루션 보기

4 답변 개

Avatar

정확한 답변 작성자:
Employee

No..., at least this is not the intended way of using WCMUse...

Avatar

Employee

What is the use-case you have in mind?

Avatar

Level 8

Feike Visser wrote...

What is the use-case you have in mind?

 

I have a class that utilizes WCMUse and builds out a list of news articles using Sightly.  I would also like to be able to utilize the same code in my servlet to avoid duplicate code (I have a requirement where one area needs AJAX to display data and the other does not).  I think I can achieve what I need to do pretty easily without invoking the WCMUse class and just separating out the logic into a different package/class within my OSGI bundle - I was just curious if this functionality existed.

Avatar

Employee

I would look towards Sling Models in that case. http://sling.apache.org/documentation/bundles/models.html

This can be used from Sightly as well as Java-code. From Sightly it must be adaptable from Request or Resource.

 

Something like this..., 

@Model(adaptables = SlingHttpServletRequest.class)

public class HeaderComponent {

    private SlingHttpServletRequest request;

public HeaderComponent(SlingHttpServletRequest request) {

this.request = request;

}

@PostConstruct

protected void init(){

// do your stuff...

}

}