我们如何将 xml 文件导入 out of Box Repository 在 ATG 中,除了使用 StartSQLRepository 之外,还有什么方法可以将 xml 文件导入数据库,
2 回答
转到 dyn/admin/--/atg/comm/catalog.productCatalog/ -- 例如
找到属性选择。-definition file use xmlfile("path/to/file); -- 在那个文本框区域
当 ATG 找不到文件时,您将收到错误消息。错误消息给出了 ATG 期望文件是 --some config 文件夹的想法。
/ 阿尼拉尔
如果文件不是太大,一种常见的方法是将其粘贴到 dynamo 管理中的存储库组件中。ATG 中的所有存储库都将在 dyn/admin 中为此任务提供此选项。
如果这不符合您的需要,您可以编写一个调用 atg.repository.xml.AddService.addItem() 的类。从手册:
您使用 atg.repository.xml.AddService 类的 addItem() 方法从 XML 文档创建新的存储库项。
请参阅http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGWSFrameGuide/html/s0603addingrepositoryitems01.html和http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGRepositoryGuide /html/s1202addingitems01.html