`

Spark源代码编译生成全攻略

 
阅读更多

Spark源代码编译生成全攻略

关键字: xmpp

本文来源:http://bookbookpicture.spaces.live.com/blog/cns!68F3076C3C3DA5EB!671.entry

其实关于这个问题在Spark的官网www.igniterealtime.org上有很详尽的介绍,因此本文大部分内容是从英文文档引用而来的,其中还有一些个人的经验。

Spark源代码:下载地址
想了解更多关于"Spark"的文章,请点击这里.

<!--[if !supportLists]-->1. <!--[endif]-->安装JDK
这个不用说了,注意版本,最少要1.5,推荐使用

<!--[if !supportLists]-->2. <!--[endif]-->安装Eclipse3.3
a)
从官网下载Eclipse 3.3 (Java开发者用的)
b)
假设你把eclipse安装在c:/program files/eclipse,进入这个文件夹,为eclipse.exe创造一个桌面图标,右击这个图标,选择属性,打开属性对话框,在目标的输入框里,输入如下
"C:/Program Files/Eclipse/eclipse.exe" -vm "C:/Program Files/Java/jdk1.6.0/bin/javaw"
熟悉eclipse的都知道这是为eclipse指定使用哪个Java VM

<!--[if !supportLists]-->3. <!--[endif]-->eclipse安装Subversive插件
a
)用上面建的图标打开eclipse,下面开始安装Subversive插件,由于我用的是英文版的ecplipse
下面的菜单我都用英文。
b
点击Help::Software Updates::Find and Install...
c
)点击 Search for new features to install ,点Next
d
)点New Remote Site... 按钮
e
)在name的输入框里输入Subversive,并且在URL输入框里输入
http://www.polarion.org/projects/subversive/download/1.1/update-site
(最新的Subversive地址上http://www.eclipse.org/subversive查询)
f
)点击Finish,开始安装Subversiveeclipse将搜索网站,并且在下一个窗口中显示你想安装的功能
选择安装Subversive SVN Team Provider Plugin Subversive Client Libraries下面所有的功能
g Nexteclipse开始安装过程,安装结束后重启eclipse

<!--[if !supportLists]-->4. <!--[endif]-->利用svn方式下载spark代码
a
)点击如下Windows::Open Perspective::Other...
b
)弹出一个“Open Perspective”对话框,选择“SVN Repository Exploring”,单击OK
c
)这是eclipse界面发生变化,在左边的“ SVN Repositories”面板上,右击鼠标
选择New::Repository Location...
d
)在“New Repository Location”的位置输入
http://svn.igniterealtime.org/svn/repos,单击 “Finish”
e
)在SVN Repositories面板上,会发生变化,展开它,找到spark的选项,右击
spark
下面的trunk项,选择“Check Out”,下载spark的代码。
f
)下载完成后,选择Window::Open Perspective::Java,在Project Explorer面板上,
看到Spark项目,删掉它,在弹出来的对话框中选择“Do not delete contents”
在工作目录下面找到spark文件夹,里面就是spark的源代码。
:也可以不要这么麻烦,我在上面提供了一个链接,可以直接下载Spark源代码,上面的步骤都
可以省了.

<!--[if !supportLists]-->5. <!--[endif]-->创建Spark项目
1)
点击Window::Open Perspective::Java菜单
2)
Project Explorer窗口中,如果有spark这个项目,把它删了,删除时,会问你要不要删除
文件,选择不要.
3)
选择File::New::Project...,再选择Java::Java Project,New Java Project窗口选择
"Create project from existiing source",
然后把spark文件所在的文件夹加进去.
4)
"project name"中输入spark,要和文件夹的名字相同.
5)
Finish.

<!--[if !supportLists]-->6. <!--[endif]-->生成Spark
1)
点击Window::Show View::Ant
2)
右击Ant面板,选择Add Buildfiles
3)
展开spark::build文件夹,选择build.xml,点击"OK"
4)
Ant面板,展开Spark,双击"release",等一段时间,会提示"Build Successful".

<!--[if !supportLists]-->7. <!--[endif]-->Create Project Builder
1)
点击Run::Open Debug Dialog...,出现"Run"窗口
2)
选择"Java Application",点击"New"按钮.
3)
"Main"标签页,New_configuration换成Spark或其它的这个无所谓.
4)
点击Project::Browse按钮,选择Spark,再点OK.
5)
点击Main class::Search按钮,选择main所在的类Startup-org.jivesoftware.launcher,
再点击OK
6)
建议勾选Stop in main.
7)
点击Classpath标签页,选择User Entries ,使得Advanced..按钮变的可用.点击Advanced
按钮.
8)
在弹出来的Advanced Options窗口,选择Add Folders,再点OK,Folder Selection窗口
选择spark::src::resources 文件夹,点击OK
9)
选择Common标签页,勾选Debug,Run前面的框
10)
点击Apply,再点击Close

<!--[if !supportLists]-->8. <!--[endif]-->Run/Debug
点击Run::Open Run Dialog..,在弹出的对话框选择Spark,然后点Run就行了.

英文文档来源:http://www.igniterealtime.org/community/docs/DOC-1040

英文文档如下:

This guide assumes that you are installing everything from scratch. If you've done some parts of them, this guide may still be useful. I compile this guide to the best of my knowledge. I apologize if it doesn't work for you.

Notes:

<!--[if !supportLists]-->· <!--[endif]-->This guide assumes that you want the latest updates of the source i.e. from the project'strunkdirectory. If you only want the released/stable version, checkout the desired release from under
the
tagsdirectory.


Install JDK

<!--[if !supportLists]-->· <!--[endif]-->Download JDK and install them. The least version should be 1.5. I use 1.6. Sorry, no instruction for this.

Install Eclipse 3.3

<!--[if !supportLists]-->· <!--[endif]-->Download Eclipse 3.3 from www.eclipse.org. I useEclipse IDE for Java EE Developers. You should at least useEclipse IDE for Java Developers.

<!--[if !supportLists]-->· <!--[endif]-->Extract the downloaded zip file intoC:/Program Files/Eclipse.

<!--[if !supportLists]-->· <!--[endif]-->OpenC:/Program Files/Eclipsefolder.

<!--[if !supportLists]-->· <!--[endif]-->Right click and drageclipse.exeon to your desktop (or Windows taskbar) to create a shortcut icon.

<!--[if !supportLists]-->· <!--[endif]-->Right click the shortcut icon and chooseProperties. TheEclipse Propertieswindow will show.

<!--[if !supportLists]-->· <!--[endif]-->TheTargettextbox should read something like this"C:/Program Files/Eclipse/eclipse.exe" -vm "C:/Program Files/Java/jdk1.6.0/bin/javaw"depending on the JDK that you use and where you installed it.

<!--[if !supportLists]-->· <!--[endif]-->Close theEclipse Propertieswindow.

Install Subversive Plugin

<!--[if !supportLists]-->· <!--[endif]-->Double-click the shortcut icon to start Eclipse.

<!--[if !supportLists]-->· <!--[endif]-->Select/enter your preferred workspace and clickOKto open Eclipse main IDE window.

<!--[if !supportLists]-->· <!--[endif]-->Click on theWorkbenchicon to close the welcome screen.

<!--[if !supportLists]-->· <!--[endif]-->ClickHelp::Software Updates::Find and Install...menu.

<!--[if !supportLists]-->· <!--[endif]-->Click onSearch for new features to installand clickNext.

<!--[if !supportLists]-->· <!--[endif]-->Click onNew Remote Site...button.

<!--[if !supportLists]-->· <!--[endif]-->EnterSubversivein theNamebox andhttp://www.polarion.org/projects/subversive/download/1.1/update-sitein the URL box (Check the latest URL fromhttp://www.eclipse.org/subversivewebsite), then clickOK.

<!--[if !supportLists]-->· <!--[endif]-->ClickFinishto install Subversive. Eclipse will search for the update site and show the result in a next window where you will select the features to install. I choose everything underSubversive SVN Team Provider PluginandSubversive Client Libraries.

<!--[if !supportLists]-->· <!--[endif]-->ClickNextto continue and so on until the installation ends. You normally want to restart Eclipse when the installation ends.

Check Out Spark SVN

<!--[if !supportLists]-->· <!--[endif]-->ClickWindows::Open Perspective::Other...menu.

<!--[if !supportLists]-->· <!--[endif]-->Click onSVN Repository Exploringon theOpen Perspectivewindow and clickOK.

<!--[if !supportLists]-->· <!--[endif]-->Right-click onSVN Repositoriesscreen and chooseNew::Repository Location...

<!--[if !supportLists]-->· <!--[endif]-->OnNew Repository Locationenterhttp://svn.igniterealtime.org/svn/reposin the URL box and clickFinish. You'll see the URL location in theSVN Repositoriesscreen.

<!--[if !supportLists]-->· <!--[endif]-->Expand the URL location.

<!--[if !supportLists]-->· <!--[endif]-->Expand thesparktree.

<!--[if !supportLists]-->· <!--[endif]-->Right-click ontrunkand chooseCheck Out. Make yourself some Mocha while waiting for the checkout to complete.

Create Spark Project

<!--[if !supportLists]-->· <!--[endif]-->ClickWindow::Open Perspective::Javamenu.

<!--[if !supportLists]-->· <!--[endif]-->In theProject Explorerscreen, if there is asparkproject, delete it. This project was created during the Spark check out process. Yes you read it correctly, DELETE the project!!! Otherwise you'll have to setup your Spark development environment manually. On theConfirm Project DeletechooseDo not delete contents, then clickYes.

<!--[if !supportLists]-->· <!--[endif]-->ClickFile::New::Project...Notice the ellipses!!!

<!--[if !supportLists]-->· <!--[endif]-->SelectJava::Java Projectand clickNext.

<!--[if !supportLists]-->· <!--[endif]-->On theNew Java Projectwindow chooseCreate project from existing sourceand browse to wheresparkfolder is located under your workspace.

<!--[if !supportLists]-->· <!--[endif]-->In theProjectnamebox enter exactly asspark. Otherwise, theNextandFinishbutton remain disabled. Click onNext. Eclipse will read the directory structure to setup the environment automatically (almost) for you and you can see what it does on the next screen. Then click onFinish.

<!--[if !supportLists]-->· <!--[endif]-->If theOpen Associated Perspectivewindows opens, click Yes.

Build Spark

<!--[if !supportLists]-->· <!--[endif]-->ClickWindow::Show View::Antmenu.

<!--[if !supportLists]-->· <!--[endif]-->Right-click theAntscreen and chooseAdd Buildfiles...

<!--[if !supportLists]-->· <!--[endif]-->Expand thespark::buildfolder and selectbuild.xml, then clickOK.

<!--[if !supportLists]-->· <!--[endif]-->On theAntscreen, expand theSparkand double-click onreleaseant task. The build may fail because you're checking out the daily updates of Spark sources, which may contain bugs. If so, wait for another day and hope that the developers discover and fix the bug; or you might dare to fix it yourself. During this first time setup, a successful build is necessary before you can proceed with the remaining tasks below.

Create Project Builder

<!--[if !supportLists]-->· <!--[endif]-->ClickRun::Open Run Dialog...orRun::Open Debug Dialog...menu. ARunwindow shows.

<!--[if !supportLists]-->· <!--[endif]-->SelectJava Applicationand click on theNewbutton.

<!--[if !supportLists]-->· <!--[endif]-->On theMaintab of theRunwindow, change theNew_configurationname toSparkor anything you like.

<!--[if !supportLists]-->· <!--[endif]-->Click onProject::Browsebutton and selectsparkand clickOK.

<!--[if !supportLists]-->· <!--[endif]-->Click onMain class::Searchbutton and selectStartup - org.jivesoftware.launcherand clickOK.

<!--[if !supportLists]-->· <!--[endif]-->I'd suggest that you selectStop in maincheck box so that you could later verify that debugging works.

<!--[if !supportLists]-->· <!--[endif]-->Click onClasspathtab.

<!--[if !supportLists]-->· <!--[endif]-->SelectUser Entriesso that theAdvanced...button will be enabled.

<!--[if !supportLists]-->· <!--[endif]-->Click on theAdvanced...button.

<!--[if !supportLists]-->· <!--[endif]-->On theAdvanced Optionswindow selectAdd Foldersand clickOK.

<!--[if !supportLists]-->· <!--[endif]-->On theFolder Selectionwindow selectspark::src::resourcesfolder and clickOK.

<!--[if !supportLists]-->· <!--[endif]-->Click onCommontab.

<!--[if !supportLists]-->· <!--[endif]-->Select theDebugandRuncheck box.

<!--[if !supportLists]-->· <!--[endif]-->Click onApplybutton.

<!--[if !supportLists]-->· <!--[endif]-->Click onClosebutton.

Run/Debug

<!--[if !supportLists]-->· <!--[endif]-->The setting is now complete for Spark.

<!--[if !supportLists]-->· <!--[endif]-->You may test running and debugging by clicking onRun::Run History::SparkandRun::Debug History::Sparkrespectively. If you choose the later and if you follow this instruction closely, execution will stop in the main method ofStartup.java.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics