网上看了很多网友发表的文章,发现又很多使用这样组合的。但是文章零零碎碎的,在这儿我自己尝试了一下,把我的经历写出来。
1、安装JDK,Eclipse和Tomcat。
JDK版本是1.4.2_04,安装目录是c:\j2sdk1.4.2_04。Eclipse版本3.0,安装目录是c:\Eclipse。Tomcat版本是5.0,安装目录是c:\Program Files\Apache Software Foundation\Tomcat 5.0。
还需要下载org.objectweb.lomboz_3.1.0.N20050106.zip和emf-sdo-runtime-I200412160800.zip。(这两个插件是JSP开发的。)下载tomcatPluginV3.zip(这个插件用于在Eclipse中启动Tomcat。)和net.sf.solareclipse_0.4.1.bin.dist.zip(这个插件是Eclipse中JSP的编辑器)。 所有的压缩文件解压缩以后将Feature和Plugin文件夹下面的所有文件拷贝到Eclipse的Feature和Plugin文件夹下。
2、配置JAVA
退出Eclipse,删除C:\eclipse\configuration\org.eclipse.update文件夹。重新启动Eclipse。这时候可以看到Eclipse上方的工具栏中多了"J2EE Project Outline"和"Tomcat start,stop,restart"的按钮。
Eclipse中,Windows->Preference,选择Java->Installed JRE。添加一项
JRE Type: Standard VM
JRE name: Java Runtime Environment(名字可以任意)
JRE home:JAVA_HOME
Windows->Preference,选择Java->Build Path。将下面的As JRE library use一项改为JRE_LIB variable。点击APPLY按钮。
3、配置Lomboz
Windows->Preference,选择Lomboz,将"JDK Tools.jar"项的内容改为:JAVA_HOME\lib\tools.jar。
Windows->Preference,选择Lomboz->Server Definitions。各项参数如下:
Server Types选择Tomcat的版本。
在Properties项目中参数如下:
Application Server Directory:TOMCAT_HOME
Address:127.0.0.1
Port:8080
Classpath Variable Name:TOMCAT_HOME
Classpath Variable:TOMCAT_HOME
在Server Classpath项目中添加:
${classPathVariableName}/bin/bootstrap.jar
${classPathVariableName}/common/servlet.jar
${classPathVariableName}/common/jasper-runtime.jar
在Project Classpath项目中添加:
${classPathVariableName}/bin/bootstrap.jar
${classPathVariableName}/common/servlet.jar
${classPathVariableName}/common/jasper-runtime.jar
各项参数修改完成以后,需要点击"应用"保存。
4、修改配置文件
在Eclipse_home\plugins\com.objectlearn.jdt.j2ee_3.0.1\servers 下面对应的server文件打开,(我的是tomcat50x.server)修改如下:Djava.endorsed.dirs="${serverRootDirectory}/bin;${serverRootDirectory}/common/endorsed" 改成
-Djava.endorsed.dirs="${serverRootDirectory}/common/endorsed" 一共有两处,都要修改,修改完之后保存,退出,重新启动Eclipse。
5、调出Lomboz各个菜单
windows->Customize Perspective,在出现的对话框中的Shortcuts页面中首先选中左边面板中的Lomboz J2EE Wizards,这时右边的面板中会出现很多选项的,同时也把它们各项前面的对钩打上。
然后在这个Shortcuts面板中改变Submenus:的值,选择Show View,接着在出现的面板的左边里选中Lomboz J2EE,同时也要把它前面的方框中打上对钩。
最后是更换Customize Perspective对话框中的面板到Commands这一页。在Commands这一页中选定Lomboz Actions同时也把它们各项前面的对钩打上。
6、配置JSP编辑器
Window->Preferences, 选择Workbench->Label Decorations, 选中 Lomboz J2EE Decorators。
本文地址:http://com.8s8s.com/it/it10286.htm