我想在资产创建期间在资产中添加自定义元数据字段。我已经引用了资产类和资产管理器类的文档。我已经使用createAsset函数来创建资产。
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dam="http://www.day.com/dam/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:mix="http://www.jcp.org/jcr/mix/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
jcr:mixinTypes="[mix:referenceable]"
jcr:primaryType="dam:Asset"
jcr:uuid="11111111111111111111111">
<jcr:content
dam:relativePath="demo/demo"
jcr:lastModified="{Date}2016-10-12T21:13:27.224+05:30"
jcr:lastModifiedBy="dam-replication-service"
jcr:primaryType="dam:AssetContent">
<metadata
dam:extracted="{Date}2016-10-12T21:13:27.164+05:30"
dam:sha1="17cb9a4ba368ff01951a11c3ca7e3f8348eee59c"
dam:size="{Long}1184"
dc:format="application/demo"
jcr:mixinTypes="[cq:Taggable]"
jcr:primaryType="nt:unstructured"/>
<related jcr:primaryType="nt:unstructured"/>
</jcr:content>
</jcr:root>
这是演示代码。我想在元数据中添加一个额外的属性: source =“xyz”。我还提到了这个链接Adding additional Metadata field in AEM-DAM。 有人可以帮帮我吗。 提前谢谢。
答案 0 :(得分:1)
不完全清楚您在添加其他元数据字段时遇到的问题。有几种方法可以做到这一点 -
/etc/workflow/models/dam/update_asset.html
或编写事件监听器(流程密集,因为它将获得在通过工作流程导入和处理资产时多次调用,这些内容监听资产更改并添加元数据字段答案 1 :(得分:1)
使用java Sling你可以这样添加:希望如此: -
session = resource.getResourceResolver().adaptTo(Session.class);
Node node = session.getNode(resource.getPath());
node.setProperty("hpe-un:objec_name", "my text");