활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
Hi community,
I'm trying to find a way to activate the page properties without activating the content of the components.
So, I want to activate only the jcr:content node without the child nodes.
I've read the replication API but I can't find something to help me. ReplicationContentFilter and also check EventHandler
I've all the code, I added a new button in the top bar of sites.html, which invokes a servlet to make the publication. But when using replicator.replicate with the jcr: content node, the content of the child components is also activated.
Does anyone have any idea how to do it?
Thanks in advance
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
Finally i found the solution!! and yes, it is using Sling Content Distribution api.
Find below the most import part of the code and let me know if you have questions
...
import org.apache.sling.distribution.DistributionRequestType;
import org.apache.sling.distribution.DistributionResponse;
import org.apache.sling.distribution.Distributor;
import org.apache.sling.distribution.SimpleDistributionRequest;
...
@Reference
private Distributor slingDistributor;
...
DistributionResponse distributionResponse = distributeResource(resourceResolver, path);
....
private DistributionResponse distributeResource(ResourceResolver resolver, String path) {
SimpleDistributionRequest sdr =
new SimpleDistributionRequest(DistributionRequestType.ADD, false, path);
return slingDistributor.distribute("publish", resolver, sdr);
}
Thanks!
조회 수
답글
좋아요 수
The replication API is not designed to replicate single nodes which do have child nodes.
For your case I would build a content-package, which just contains the jcr:content node you are interested in and replicate this package then. Please make sure that your merge settings are correct (otherwise you might purge all nodes below on publish).
Jörg
Hi Jörg_Hoh
Can i do that by code? I need to add a custom action for the authors.
What do you think about
조회 수
답글
좋아요 수
조회 수
답글
좋아요 수
Finally i found the solution!! and yes, it is using Sling Content Distribution api.
Find below the most import part of the code and let me know if you have questions
...
import org.apache.sling.distribution.DistributionRequestType;
import org.apache.sling.distribution.DistributionResponse;
import org.apache.sling.distribution.Distributor;
import org.apache.sling.distribution.SimpleDistributionRequest;
...
@Reference
private Distributor slingDistributor;
...
DistributionResponse distributionResponse = distributeResource(resourceResolver, path);
....
private DistributionResponse distributeResource(ResourceResolver resolver, String path) {
SimpleDistributionRequest sdr =
new SimpleDistributionRequest(DistributionRequestType.ADD, false, path);
return slingDistributor.distribute("publish", resolver, sdr);
}
Thanks!
조회 수
답글
좋아요 수
조회 수
Likes
답글