MyEclipse开发工具安装配置
程序员文章站
2022-04-20 21:45:41
...
MyEclipse开发工具安装配置
选择第一行蓝色句子>>>运行当前版本
为了方便查找,设置好储存代码的路径
配置Tomcat
工具栏找到Window–>preferences–>MyEclipse–>Servers–>Tomcat
出现下方示图选中Enable。然后选择下载的Tomcat的储存路径
配置jdk
工具栏找到Window–>preferences–>MyEclipse–>Servers–>Tomcat–>任意一选项–>jdk
jdk路径查找方法:单击我的电脑——>属性——>高级系统设置——>环境变量——>系统变量JAVA-HOME
完成之后Servers窗口出现一行
使用
新建一个Wed project
添加进Tomcat
点击绿色箭头运行
使用
浏览器输入localhost:8080/创建的项目名
或者127.0.0.1:8080/创建的项目名
<%@ page language="java" import="java.util.*" 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 'index.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">
-->
<style>
h1{text-align: center;color: red;}
table{border-collapse: collapse;}
td{border: 2px solid;}
</style>
</head>
<body>
<h1>注册页面</h1>
<table align="center">
<tr>
<td>学号</td>
<td><input type="text" value="1001"/></td>
</tr>
<tr>
<td>姓名</td>
<td><input type="text" value="张三"/></td>
</tr>
<tr>
<td>性别</td>
<td><input type="radio" name="sex" checked="checked" /><label>男</label><input type="radio" name="sex" /><label>女</label></td>
</tr>
<tr>
<td>年龄</td>
<td><input type="text" value="18"/></td>
</tr>
<tr>
<td>爱好</td>
<td>
<input type="checkbox" name="cb1" value="look" />看电影
<input type="checkbox" name="cb2" value="hear" />听音乐
<input type="checkbox" name="cb3" value="play" />打游戏
<input type="checkbox" name="cb4" value="study" />学习
</td>
</tr>
<tr>
<td>头像</td>
<td><input type="file" value="浏览"/></td>
</tr>
<tr>
<td>简介</td>
<td><textarea rows="5" cols="22" >请多多指教~</textarea></td>
</tr>
<tr>
<td height="41" colspan="2" align="center"><input type="reset" value="提交"/> <input type="reset" value="重置"/></td>
</tr>
</table>
</body>
</html>
![在这里插入图片描述](https://img-blog.csdnimg.cn/20200909212153359.png
?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L0wyMDY0NzEwMTY=,size_16,color_FFFFFF,t_70#pic_center)
上一篇: MyEclipse创建Maven工程
下一篇: 多核多线程复习