静态网站
- 在webapps下建立一个目录(命名不包含中文和空格),这个目录称之为项目目录
- 在项目目录下创建一个html文件
动态网站
- 在webapps下创建一个项目目录
- 在项目目录下创建如下内容
(1)WEB-INF目录
1.1在WEB-INF目录下创建web.xml文件
(2)创建静态或动态页面
.xml文件
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0"
metadata-complete="true">
</web-app>
.html文件
<html>
<head>
<title>
hello-html
</title>
</head>
<body>
<h1>
Hello!
</h1>
</body>
</html>
.jsp文件
<%@page pageEncoding="utf-8"%>
<html>
<head>
<title>
hello-html
</title>
</head>
<body>
<h1>
Hello!
</h1>
<h3>
${header['User-Agent']}
</h3>
</body>
</html>
静态页面
动态页面(不同的浏览器可以显示出来)
image.png
image.png
image.png
image.png
image.png
注:WEB-INF目录下的东西不能被客户端访问,所以不想被别人看到的东西可以放在这里面
网友评论