标签:模板 设置 body type pat 根目录 cat code idt
首先先打开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>
在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
标签:模板 设置 body type pat 根目录 cat code idt
原文地址:https://www.cnblogs.com/cnleika/p/10628686.html