1.1構(gòu)建Web應(yīng)用
徒手建立Web應(yīng)用:
- 在任意目錄下建立一個(gè)文件夾蹦肴,命名為webDemo。
- 在webDemo文件夾下面建立一個(gè)WEB-INF文件夾(區(qū)分大小寫)猴娩。
- 在Tomcat中找到web.xml阴幌,將他復(fù)制到WEB-INF文件夾下面。
- 修改web.xml文件卷中,修改后的web.xml如下矛双。
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<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">
</web-app>
- 在WEB-INF路徑下面新建兩個(gè)文件夾:classes和lib
- 在webDemo中新建一個(gè)a.jsp頁面。
a.jsp
<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %>
<!DOCTYPE html>
<html>
<head>
<title>welcome</title>
</head>
<body>
this is my first webapp.
</body>
</html>
- 將webDemo復(fù)制到Tomcat的webapps目錄下蟆豫,啟動(dòng)Tomcat服務(wù)器议忽,在瀏覽器中輸入http://localhost:8080/webDemo/a.jsp即可。
1.2配置描述符web.xml
- 配置JSP
- 配置和管理Servlet
- 配置和管理Listenner
- 配置和管理Filter
- 配置標(biāo)簽庫
- 配置JSP屬性
- 配置和管理JAAS授權(quán)認(rèn)證
- 配置和管理資源引用
- web應(yīng)用首頁
<!--配置web應(yīng)用首頁列表-->
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.htm</welcome-file>
</welcome-file-list>