一、安装JDK
二、安装Tomcat
三、安装Eclipse
eclipse-SDK-3.2-win32.zip
四、安装MyEclipse
MyEclipseEnterpriseWorkbenchInstaller_5.0.1GA_E3.2.exe
安装完毕之后,将MyEclipse安装目录下的features和plugins这2个目录覆盖到Eclipse的安装目录下。
最后将刚才安装的 MyEclipse 卸载。
解释一下上面这样做的原因: 因为MyEclipse是Eclipse的插件,所以只要把features和plugins这2个目录覆盖到Eclipse的安装目录,Eclipse就会自动认出这些插件。
五、破解MyEclipse
解释一下为什么上面已经把MyEclipse卸载掉,而现在破解,是不是相互矛盾,原因就在于刚才复制呢两个目录过来,因此这下打开Eclipse的时候,里面的界面将会出现一些MyEclipse的插件
点击Window ----> Preferences ---->MyEclipse---->Subscription ----> Enter Subscription,输入注册名以及注册机生成的注册码。
六、指定Eclipse+MyEclipse的JRE 和Tomcat 服务器
1.设定Eclipse+MyEclipse的JRE
一般情况下,Eclipse可以自动找到JRE,我们不用进行过多的设置。
2.设定Eclipse+MyEclipse的Tomcat 服务器
只需设置图中所标注的两处即可,图中其余部分是自动生成的。MyEclipse里面的application servers里面的tomcat5
tomcat5 server
enable
tomcat home directory
七、新建一个项目来测试一下Eclipse+MyEclipse开发环境是否搭建成功
1.在Eclipse中依次点击“ File ----> New ----> Project” , 在弹出的“New Project”对话框中依次点击“Web Project ---->MyEclipse---->J2EE Projects---->Web Project”, 再点“Next”,在“Project Name”中输入项目的名字“test”,最后点“Finish”。
2.在Eclipse左边Package Explorer列表中点击“test”,将项目test展开。右键点击 WebRoot ----> New ----> JSP , 新建一个名为hello.jsp的 JSP 页面
代码如下:
<%@ page language="java" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'hello.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<FORM ACTION="hello1.jsp" name=form1 method="post">
<input type=text name="hello">
<input type=submit name="Submit">
</FORM>
</body>
</html>
3. 再用同样的方法, 新建一个叫 hello_result.jsp 的JSP文件, 代码如下:
<%@ page language="java" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'hello1.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%
request.setCharacterEncoding("GBK");
String temp=request.getParameter("hello");
out.println(temp);
%>
</body>
</html>
4. deploy(部署)项目。 点击 deploy 按钮,在弹出的窗口中点击Add,部署test项目
5. 启动Tomcat服务器。
6.项目test的运行结果:我们可以去Eclipse的Workspace目录下看看test项目的代码,也可以去Tomcat的webapps目录下,看看部署之后的 test项目的结构。
注意:测试的项目名称记得跟以前的项目名称不要重复,不然就测试不出来
另外,测试的地址可以是http://localhost:8080/test
posted on 2006-10-27 15:38
dragon 阅读(418)
评论(0) 编辑 收藏 所属分类:
jsp