我是Adobe cq5的新手。通过许多在线博客和教程,但不能得到太多。任何人都可以提供Adobe cq5应用程序示例,其中包含可以在JCR中存储和检索数据的详细说明。
提前致谢。
答案 0 :(得分:2)
这是CQ 5.4的一个片段,可以帮助您入门。它在内容层次结构中的任意位置插入内容页面和文本(作为parsys)。该位置由workflow有效负载提供,但您可以编写从命令行运行的内容并使用任何有效的CRX路径。使其成为流程步骤的优点是您可以为您建立会话,并且已经处理了对插入点的导航。
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
import org.apache.sling.jcr.resource.JcrResourceConstants;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.osgi.framework.Constants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.day.cq.workflow.WorkflowException;
import com.day.cq.workflow.WorkflowSession;
import com.day.cq.workflow.exec.WorkItem;
import com.day.cq.workflow.exec.WorkflowData;
import com.day.cq.workflow.exec.WorkflowProcess;
import com.day.cq.workflow.metadata.MetaDataMap;
import com.day.cq.wcm.api.NameConstants;
@Component
@Service
@Properties({
@Property(name = Constants.SERVICE_DESCRIPTION,
value = "Makes a new tree of nodes, subordinate to the payload node, from the content of a file."),
@Property(name = Constants.SERVICE_VENDOR, value = "Acme Coders, LLC"),
@Property(name = "process.label", value = "Make new nodes from file")})
public class PageNodesFromFile implements WorkflowProcess {
private static final Logger log = LoggerFactory.getLogger(PageNodesFromFile.class);
private static final String TYPE_JCR_PATH = "JCR_PATH";
* * *
public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap args)
throws WorkflowException {
//get the payload
WorkflowData workflowData = workItem.getWorkflowData();
if (!workflowData.getPayloadType().equals(TYPE_JCR_PATH)) {
log.warn("unusable workflow payload type: " + workflowData.getPayloadType());
workflowSession.terminateWorkflow(workItem.getWorkflow());
return;
}
String payloadString = workflowData.getPayload().toString();
//the text to be inserted
String lipsum = "Lorem ipsum...";
//set up some node info
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("d-MMM-yyyy-HH-mm-ss");
String newRootNodeName = "demo-page-" + simpleDateFormat.format(new Date());
SimpleDateFormat simpleDateFormatSpaces = new SimpleDateFormat("d MMM yyyy HH:mm:ss");
String newRootNodeTitle = "Demo page: " + simpleDateFormatSpaces.format(new Date());
//insert the nodes
try {
Node parentNode = (Node) workflowSession.getSession().getItem(payloadString);
Node pageNode = parentNode.addNode(newRootNodeName);
pageNode.setPrimaryType(NameConstants.NT_PAGE); //cq:Page
Node contentNode = pageNode.addNode(Node.JCR_CONTENT); //jcr:content
contentNode.setPrimaryType("cq:PageContent"); //or use MigrationConstants.TYPE_CQ_PAGE_CONTENT
//from com.day.cq.compat.migration
contentNode.setProperty(javax.jcr.Property.JCR_TITLE, newRootNodeTitle); //jcr:title
contentNode.setProperty(NameConstants.PN_TEMPLATE,
"/apps/geometrixx/templates/contentpage"); //cq:template
contentNode.setProperty(JcrResourceConstants.SLING_RESOURCE_TYPE_PROPERTY,
"geometrixx/components/contentpage"); //sling:resourceType
Node parsysNode = contentNode.addNode("par");
parsysNode.setProperty(JcrResourceConstants.SLING_RESOURCE_TYPE_PROPERTY,
"foundation/components/parsys");
Node textNode = parsysNode.addNode("text");
textNode.setProperty(JcrResourceConstants.SLING_RESOURCE_TYPE_PROPERTY,
"foundation/components/text");
textNode.setProperty("text", lipsum);
textNode.setProperty("textIsRich", true);
workflowSession.getSession().save();
}
catch (RepositoryException e) {
log.error(e.toString(), e);
workflowSession.terminateWorkflow(workItem.getWorkflow());
return;
}
}
}
我已发布further details and discussion。
其他几点:
我在内容的名称和标题中加入了时间戳 要插入的页面。这样,您可以运行许多代码和测试周期 没有清理你的存储库,你知道哪个测试是 最近运行。额外奖励:没有重复的文件名,没有 歧义。
Adobe和Day在提供常量方面一直不一致 属性值,节点类型等。我使用了那些常量 我可以找到,并在其他地方使用文字字符串。
我没有填写上次修改日期等属性。在代码中 生产我会这样做。
我发现自己被Node.setPrimaryType()
和...弄糊涂了
Node.getPrimaryNodeType()
。这两种方法都很粗糙
补充; setter接受一个字符串,但getter返回一个
其中包含各种信息的NodeType。
在我的原始版本的代码中,我读取了要从文件中插入的文本,而不仅仅是使用静态字符串“Lorem ipsum ...”
完成此示例之后,您应该能够使用Abobe docs编写从CRX读取数据的代码。
答案 1 :(得分:2)
如果您想了解如何编写可以存储和查询CQ JRC数据的CQ应用程序,请参阅以下文章:
http://scottsdigitalcommunity.blogspot.ca/2013/02/querying-adobe-experience-manager-data.html
这提供了一个分步指南,并引导您完成整个过程 - 包括使用Maven构建OSGi包。
上面的评论 - 我看到了对BND文件的引用。你应该远离CRXDE来创建OSGi并使用Maven。