1.Tomcat系统变量配置:添加系统变量名为TOMCAT_HOME,路径为你的tomcat解压包的文件路径。

在系统路径classpath中添加:%TOMCAT_HOME%\lib\servlet-api.jar;在系统path中添加%TOMCAT_HOME%\bin

2.在myeclipse中配置Tomcat:windows->preferences->servers->选择tomcat的版本->选中enable,在windows->preferences->servers->Integrated sandbox->myeclipse->tomcat选择disable

3.在浏览器中发布web工程jsp,选择工程,然后点击鼠标右键->myclipse->Add and Remove,打开的对话框中确保project为你要部署的web工程,点击Add在弹出的对话框中选中tomcat->finish.然后是运行web,首先在myeclipse中启动tomcat,最后在浏览器中jsp路径,例如:http://localhost:8080/你的web工程/__.jsp。

4.怎么修改字符码:windows->preferences->contextTypes text->JSP->UTF-8;