Eclipse创建第一个Web项目

Eclipse创建第一个Web项目

  1. 创建项目

注意:选择的是EclipseEE版本

Eclipse创建第一个Web项目_第1张图片
Eclipse创建第一个Web项目_第2张图片
2. 点击next,或者自己可以添加一些文件
Eclipse创建第一个Web项目_第3张图片
3. 添加web.xml文件
Eclipse创建第一个Web项目_第4张图片
4. 创建完后项目结构
Eclipse创建第一个Web项目_第5张图片
5. 添加服务器
Eclipse创建第一个Web项目_第6张图片
Eclipse创建第一个Web项目_第7张图片
6. 创建jsp文件
Eclipse创建第一个Web项目_第8张图片
Eclipse创建第一个Web项目_第9张图片
jsp内容如下

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>欢迎来到jsp页面</h1>
</body>
</html>

web.xml内容


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>studydisplay-name>
  <welcome-file-list>
    <welcome-file>index.jspwelcome-file>
   
  welcome-file-list>
web-app>
  1. 添加路径
    未添加路径jsp文件错误
    Eclipse创建第一个Web项目_第10张图片
    Eclipse创建第一个Web项目_第11张图片
    Eclipse创建第一个Web项目_第12张图片
    Eclipse创建第一个Web项目_第13张图片
  2. 运行项目
    Eclipse创建第一个Web项目_第14张图片
    Eclipse创建第一个Web项目_第15张图片
    Eclipse创建第一个Web项目_第16张图片
    Eclipse创建第一个Web项目_第17张图片

你可能感兴趣的:(eclipse)