码迷,mamicode.com
首页 > Web开发 > 详细

JSP入门

时间:2019-03-30 20:08:47      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:模板   设置   body   type   pat   根目录   cat   code   idt   

第一步 下载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

JSP入门

标签:模板   设置   body   type   pat   根目录   cat   code   idt   

原文地址:https://www.cnblogs.com/cnleika/p/10628686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!