测试环境:
主机系统:Win 7
虚拟机:VMware workstation 11.1.0
虚拟机OS: centos 6.5 64位 Kernel 2.6.32-431-e16.x86_64
Myeclipse:2015 1.0
Tomcat:6.0.43
1. 图形界面下运行Myeclipse#./myeclipse &
2. 新建项目
3. 选择MyEclipse –> Web –> JSP (Basic Templates)
4. 输入项目名 HelloWorld
5. 编辑代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> Hello World! </body> </html>
6. 设置Web服务器Tomcat
Windows –> Preferences –> MyEclipse –> Servers –> Runtiem Environment
7. 点击"Add"添加,选择Linux下自己安装Tomcat的版本,我安装的是Tomcat 6.0
选择Tomcat安装目录
8. 运行Tomcat服务器
点击右侧的"Restore"按钮
点击"运行"按钮
9. 选择要运行的项目
可以看到服务器已经启动,然后再点击"Add/Remove Devements.."按钮
10. 打开火狐浏览器输入:
http://localhost:8080/test_hello_world/Helloworld%201.0.jsp
备注:虚拟机下的Linux要连接网络,我用的是NAT模式
三颗油