- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将静态内容网站迁移到 IBM Web Content Manager。基本上我们有大量的 HTML 页面。还有很多从 HTML 页面引用的 Word 和 PDF 文档。
我们需要使用爬虫提取内容,然后将该数据集成而不是导入到 IBM Web Content Manager。
成功完成此迁移的最佳做法是什么?
IBM WCM 中是否有批量导入功能?
是否可以通过某些 API 或服务自动创建页面和组件的过程?
如何批量导入 Word 文档和 PDF,将它们存储为可从迁移页面引用的组件。问候。
最佳答案
要导入内容,您可以尝试两种选择:
IBM Web Content Integrator简而言之,您需要创建提要您现有网站上有关门户定义的规则的来源。之后,您需要在门户网站上创建消费者提要并获取内容到 WCM。
使用 WCM api 创建门户应用程序并从任何您拥有的来源 - 提要、数据库、文件等
要创建门户页面/组件(如图像、文件、html),您还可以使用门户/WCM api。但在导入内容之前,请确保您了解内容和组件之间的区别,并决定您想要创建什么 - 内容或组件,如内容源。此外,关于以编程方式创建页面的信息较少,但它是可能的。
如果您打算使用 JSR 286 portlet 来显示 contnet,请查看 XML 导入工具。通过这种方式,您可以自动配置并避免对每个页面进行手动配置。页面配置 - 它只是 xml 文件,您始终可以使用 java 修改此文件并为特定页面应用更新的文件。
更新
以编程方式创建门户页面
import com.ibm.portal.ModifiableMetaDataProvider;
import com.ibm.portal.content.*;
import com.ibm.portal.model.ContentModelHome;
import com.ibm.portal.model.ContentModelProvider;
import com.ibm.portal.model.controller.ContentModelControllerHome;
import com.ibm.portal.model.controller.CreationContextBuilderFactory;
import com.ibm.portal.model.controller.exceptions.CannotInstantiateControllerException;
import com.ibm.workplace.wcm.services.addressability.FriendlyURLFactoryImpl;
import com.ibm.wps.pe.pc.std.core.PortletUtils;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.portlet.*;
/**
* @author : Georgy Gobozov
* @created : 12.03.13
*/
public class PageUtil {
private static final String PREF_PARENT_PAGE = "parent.page.unique.name";
private static final String PREF_UNIQUE_PREFIX = "pages.unique.name.prefix";
public static boolean createPortalPage(String title, ActionRequest request, ActionResponse response) {
PortletPreferences prefs = request.getPreferences();
String parentPageUniqueName = prefs.getValue(PREF_PARENT_PAGE, "wps.content.root");
String uniqueNamePrefix = prefs.getValue(PREF_UNIQUE_PREFIX, "study.portal.pages.");
ContentModelController ctrl = null;
CreationContextBuilderFactory factory = null;
ContentPageCreationContext ctx = null;
ModifiableContentPage newPage = null;
ContentNode parent = null;
try {
ctrl = getController(request, response);
factory = CreationContextBuilderFactory.getInstance();
// Use the context to create the private page
ctx = factory.newContentPageCreationContext(true);
newPage = (ModifiableContentPage) ctrl.create(ContentPage.class, ctx);
newPage.setTitle(request.getLocale(), title);
// set page unique name
newPage.getModifiableObjectID().setUniqueName(uniqueNamePrefix + title);
parent = (ContentNode) ctrl.getLocator().findByUniqueName(parentPageUniqueName);
if (parent != null) {
ctrl.insert(newPage, parent, null);
// set friendly name
ModifiableMetaDataProvider mmdp = (ModifiableMetaDataProvider)ctrl.getModifiableNode(newPage);
mmdp.getModifiableMetaData().setValue("com.ibm.portal.friendly.name", title);
// Commit, i. e. persist the changes.
ctrl.commit();
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (null != ctrl)
// Dispose the Controller.
ctrl.dispose();
}
return true;
}
public static ContentModelController getController(PortletRequest request, PortletResponse response) {
ContentModel aContentmodel = null;
ContentModelController ctrl = null;
ContentModelControllerHome home = null;
try {
Context ictx = new InitialContext();
ContentModelHome homea = (ContentModelHome) ictx.lookup("portal:service/model/ContentModel");
if (homea != null) {
ContentModelProvider provider = homea.getContentModelProvider();
PortletUtils.getInternalRequest(request).getHttpServletRequest();
//aContentmodel = provider.getContentModel((ServletRequest) request, (ServletResponse) response);
aContentmodel = provider.getContentModel(PortletUtils.getInternalRequest(request).getHttpServletRequest(), PortletUtils.getInternalResponse(response).getHttpServletResponse());
}
home = (ContentModelControllerHome) ictx.lookup(ContentModelControllerHome.JNDI_NAME);
if (home != null) {
try {
ctrl = home.getContentModelControllerProvider().createContentModelController(aContentmodel);
} catch (CannotInstantiateControllerException e) {
e.printStackTrace();
}
}
} catch (Exception e) {
e.printStackTrace();
}
return ctrl;
}
}
更有用的类(class)here
关于websphere-portal - 将网站迁移到 IBM Web Content Manager 8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23908858/
I have created a hybrid activation and then setup an ssm agent on my on-premise windows system.我创
我对 python/django 编程很陌生,因为我没有编程背景。我正在在线上课,我只想确切地知道 manage.py 文件的作用。我试过用谷歌搜索它,但除了在 django-admin.py 周围放
我的 DependancyInject 存在结构问题。 情况 我正在为基于体素的游戏创建服务器;它是完全调制的,但相关模块有以下3个。 NetworkModule(发送和接收数据包)WorldModu
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 5年前关闭。 Improve thi
上 Docker正在编写的网站: The MANAGER STATUS column shows node participation in the Raft consensus: No value
我正在尝试使用发布管理作为构建版本的工具,但我很难理解码件、工具和操作之间的真正区别。有人可以分解这三个概念之间的差异以及它们如何相互配合吗? 最佳答案 由于它适用于基于代理的版本: 工具旨在提供自定
当尝试在远程环境中在 pycharm 中执行“run manage.py Task...”时,出现以下错误: ssh://vagrant@127.0.0.1:2222/home/vagrant/.vi
在过去的 48 小时里,我一直在努力解决这个问题,这让我发疯了。 我的 SDK Manager.exe 闪烁一个 cmd 屏幕并在不到一秒内关闭。 经过多方搜索,我终于在调整android.bat并以
我在 this tutorial 之后创建了以下自定义管理命令. from django.core.management.base import BaseCommand, CommandError f
我在一家拥有 2,500 多名员工和同样多的 Android 智能手机的非营利组织工作。 近年来,我们测试了许多 EMM 产品。尽管我们只需要一些非常基本的功能,除了一两个特殊功能,但没有一个能真正赢
我已经在我的网站上安装了 Google 标签管理器,但自从新版本的 Google 标签管理器以来,我无法使用预览选项。每次我点击它时,我都会看到我的网站页面打开,但随后出现以下错误:“Tag Assi
我是 django 的新手,并创建了一个与教程中描述的民意调查网站没有太大区别的应用程序。 在网站上我得到: Exception Type: TemplateSyntaxError Exception
https://cloud.google.com/deployment-manager/docs/configuration/templates/create-basic-template 我可以像这
我们正在使用 Microsoft 的发布管理将我们的 Web 应用程序部署到我们的测试环境 (QA)。它是一个直接的 MVC.Net Web 应用程序。我们的构建生成一个 web 部署包,我们有一个命
我想将 python manage.py 缩短为 ./manage.py。 这可能很简单,但我找不到答案。我在有关 django 的问题的答案之一中看到了一步一步的方法,但我没有记住。尝试在 stac
我想将 python manage.py 缩短为 ./manage.py。 这可能很简单,但我找不到答案。我在有关 django 的问题的答案之一中看到了一步一步的方法,但我没有记住。尝试在 stac
我正在使用安装了 SQL Server Data Tools 的 VS 2012。我有一个 ADO NET 源,它使用 .Net Providers\MySQL 数据提供程序,并试图将一些数据推送到
根据我从文档中阅读的内容 https://developer.android.com/topic/libraries/architecture/workmanager , 它说: The task i
这两个类显然是相关的。 SupportFragmentManager 是否用于使用 FragmentTransaction 生成的 Fragments,而“常规”FragmentManager 专门用
我有一个桌子经理(经理ID、姓名、地址、城市、电话)。如果多个经理来自同一城市,我必须显示城市、姓名和电话详细信息。我的代码是:。但这向我展示了第一行中的一个错误,即“不是按表达式分组”。请救救我!
我是一名优秀的程序员,十分优秀!