在
家服务网的开发过程中,经常会碰到各种各样的问题。以前一直用打印日志的办法,最近终于忍无可忍,决心找到另外一种常用的故障定位方法即断点调试。为了能够在Eclipse断点调试Sevlet, 在经过Google一通之后,下载安装了tomcatPluginV32beat3. 下面是一些安装步骤。
1. 将tomcatPlugin解压到Eclipse的plugins目录下。解压后会有一个类似com.ibm.icu.source_3.4.5.20061213的目录。
2. 拷贝com.sysdeo.eclipse.tomcat 包下面的DevLoader.zip到解压缩到tomcat安装目录中的server/classes目录下,如果要数据库驱动,需要把相应的数据库驱动jar包放到/tomcat/server/lib下;
3.启动eclipse,如果没有,需要eclipse -clean,再不行,需要eclipse/configuration/org.eclipse.update/platform.xml删除,重启;
4.打开eclipse/preferences/tomcat,选择tomcat version 5.x
tomcat home: D:/tomcat
configuration file D:/tomcat/conf/server.xml;
Advanced部分: tomcat base D:/tomcat
JVM Settings jre jre1.5.0
source path : 不变
5.选择启动的项目,如yjd,右键选择Properties,--tomcat,
General--Context name 为/sedan;
Subdirectory to set as web application root(optional) /src/webapp
Devloader Classpath选中Activate DevLoader
6.启动就可以了