JSP入门
第一步 下载tomcat8.0
第二步 创建项目文件夹
首先先打开tomcat根目录,
新建项目文件夹(Helo_JSP)
然后将webapps/WEB-INF文件夹复制到项目文件夹(Helo_JSP)
下.
删除里面的内容只保留web.xml.
将下面代码替换掉
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<welcome-file-list>
<welcome-file>welcome.jsp</welcome-file><!--这里是设置默认主页-->
</welcome-file-list>
</web-app>
第三步 建立classes和lib文件夹
在WEB-INF下建立两个文件夹.
classes文件夹,用以放置*.class文件.
lib文件夹,用于存放需要的jar包.
此时项目展开是
./WEB-INF
/classes
./WEB-INF
/lib
./WEB-INF
/web.xml
./welcome.jsp`
第四步 修改主页
主页模板
<%@ page contentType="text/html; charset=UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>主页</title>
</head>
<body>
<h1>欢迎</h1>
</body>
</html>
最后在浏览器页面输入网址
http://localhost:8080/项目文件夹名称
记得开启tomcat