如何将infocenter部署成Web结构(Eclipse Help System)

来源:互联网 发布:商品查询软件 编辑:程序博客网 时间:2024/06/05 06:44

如何将infocenter部署成Web结构
以一个例子说明:
要求:eclipse版本:3.4或更高版本


1.从www.eclipse.org下载eclipse,并解压,例如: D:/InfoCenter/eclipse


2.在D:/InfoCenter/eclipse/plugins下面找到这个文件org.eclipse.help.webapp_3.3.101.M20080805_34x.jar,将它拷贝到一个临时目录(D:/temp)中,并解压.出现这样一个目录D:/temp/org.eclipse.help.webapp_3.3.101.M20080805_34x.进入这个目录:D:/temp/org.eclipse.help.webapp_3.3.101.M20080805_34x/web-archive有两个目录help和org.eclipse.help.infocenter-feature


3.你可以将org.eclipse.help.infocenter-feature导入eclipse工程中,使用File-->import--->existing Project


4.Export org.eclipse.help.infocenter-feature as a deployable feature and set the destination to be web-archive/help/WEB-INF/eclipse in the area where org.eclipse.help.webapp.<version>.jar was unzipped.


5.向D:/temp/org.eclipse.help.webapp_3.3.101.M20080805_34x/web-archive/help/WEB-INF/eclipse/plugins添加一些文档插件。


6.从http://download.eclipse.org/eclipse/equinox/站点下载org.eclipse.equinox.http.servletbridge_<version>.jar 和 org.eclipse.equinox.servletbridge_<version>.jar两个文件。我下载是:eclipse-equinox-3.4.zip,注意此版本要和eclipse版本一致。


7.eclipse-equinox-3.4.zip文件,在eclipse/plugins/下面找个org.eclipse.equinox.servletbridge_1.0.100.v20080427-0830.jar和org.eclipse.equinox.http.servletbridge_1.0.0.v20080427-0830.jar文件.解压org.eclipse.equinox.servletbridge_1.0.100.v20080427-0830.jar文件,将其中的servletbridge.jar拷贝到.D:/temp/org.eclipse.help.webapp_3.3.101.M20080805_34x/web-archive/help/WEB-INF/lib下面.将org.eclipse.equinox.http.servletbridge_1.0.0.v20080427-0830.jar这个文件拷贝到D:/temp/org.eclipse.help.webapp_3.3.101.M20080805_34x/web-archive/help/WEB-INF/eclipse/plugins下面


8.此时你可以以help目录为准创建一个war包,或者直接将help文件夹拷贝到tomcate下面。启动tomcate,进入帮助系统,查看结果。

 

注意:
Notes: If you look in the config.ini in the help.war file under directory help/WEB_INF/eclipse/configuration you will notice the
line eclipse.product=org.eclipse.productname. If your product has help system customizations in a product plugin you can
activate these by changing this line to point to your product plugin.

 

博文来源:http://happay99.blog.hexun.com/24985320_d.html