這篇文章給大家分享的是有關(guān)如何部署Eclipse RAP到Tomcat的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)昌都,十年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792
簡單介紹一下部署Eclipse RAP 自帶的RAP例子,如果安裝了Eclipse RAP,打開幫助界面,找到RAP幫助文檔中的“How to deploy a RAP application to a servlet container?“ 這篇文章,文章中提供了一個鏈接方式,可以下載一個psf,這是Eclipse的工程集文件,文件內(nèi)容如下:
< ?xml version="1.0" encoding="UTF-8"?> < psf version="2.0"> < provider id="org.eclipse.team.cvs.core.cvsnature"> < project reference="1.0,:pserver:anonymous@dev.eclipse.org:/cvsroot/rt,org.eclipse.equinox/server-side/bundles/org.eclipse.equinox.http.servletbridge,org.eclipse.equinox.http.servletbridge"/> < project reference="1.0,:pserver:anonymous@dev.eclipse.org:/cvsroot/rt,org.eclipse.equinox/server-side/bundles/org.eclipse.equinox.servletbridge,org.eclipse.equinox.servletbridge"/> < project reference="1.0,:pserver:anonymous@dev.eclipse.org:/cvsroot/rt,org.eclipse.rap/releng/org.eclipse.rap.demo.feature,org.eclipse.rap.demo.feature"/> < /provider> < /psf>
你也可以將內(nèi)容復(fù)制到文本文件然后改成 yourpsffile.psf 文件,將它作為Eclipse的工程集導(dǎo)入到Eclipse中,Eclipse就會自動從Eclipse的CVS網(wǎng)站上下載對應(yīng)的插件,總共有三個插件被下載下來:
org.eclipse.equinox.http.servletbridge
org.eclipse.equinox.servletbridge
org.eclipse.rap.demo.feature
打開org.eclipse.rap.demo.feature工程的script文件夾下的webappBuilder.xml文件,修改屬性名為”servletbridge.dir“的屬性值(好像在18行),將值修改為你的”org.eclipse.equinox.servletbridge“工程的路徑,推薦使用絕對路徑,比如:
< property name="servletbridge.dir" value="D:/DeveloperWorks/Eclipse-3.5-RAP-SRC/org.eclipse.equinox.servletbridge" />
然后直接使用Ant運行編譯,運行后會在插件的build文件夾下面生成可部署的文件。由此便可以準(zhǔn)備部署Eclipse RAP到Tomcat。
打開生成的web.xml 文件,將已經(jīng)被注釋的下面內(nèi)容
< !-- < init-param> < param-name>commandline< /param-name> < param-value>-console< /param-value> < /init-param> -->
還原成正常的代碼,這樣可以在Tomcat的控制臺使用OSGI的控制臺,方便查看和管理插件的生命周期,完成插件的更新和卸載功能,再將
< init-param> < param-name>enableFrameworkControls< /param-name> < param-value>false< /param-value> < /init-param>
中的參數(shù)值由false改成true,這樣可以啟動對OSGI框架的控制,方便調(diào)試。
接 接著將org.eclipse.rap.demo.feature工程下面的build文件夾下的demo文件夾下面的內(nèi)容復(fù)制到Tomcat的webapps目錄下,啟動Tomcat,啟動后可在控制臺輸入 ”ss" 查看OSGI框架下已經(jīng)被加載的插件:
可以看到我們部署的org.eclipse.rap.demo文件已經(jīng)處于激活狀態(tài)了。
打開瀏覽器,輸入 http://localhost:8080/demo/rap 就可以進行訪問了。
感謝各位的閱讀!關(guān)于“如何部署Eclipse RAP到Tomcat”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!