JavaWeb基础

1、基本概念

1.1、前言

web开发:

  • web,网页的意思,www.baidu.com

  • 静态web

    • html,css
    • 提供给所有人看的数据始终不会发生变化
  • 动态web

    • 淘宝,几乎所有的网站
    • 提供给所有人看的数据始终会发生变化,每个人在不同的时间,不同的地点,看到的信息各不相同!
    • 技术栈:Servlet/JSP,ASP,PHP

    在Java中,动态web资源开发的技术统称为JavaWeb。

1.2、web应用程序

web应用程序:可以提供浏览器访问的程序。

  • a.html、b.html...多个web资源,这些web资源可以被外界访问,对外界提供服务

  • 你们能访问到的任何一个页面或者资源,都存在于这个世界的某一个角落的计算机上

  • URL

  • 这个统一的web资源会被放在同一个文件夹下,web应用程序-->Tomcat服务器

  • 一个web应用程序有多部分组成(静态web,动态web)

    • html,css,js
    • jsp,servlet
    • java程序
    • jar包
    • 配置文件(Properties)

    web应用程序编写完毕后,若想提供给外界访问:需要一个服务器来统一管理。

1.3、静态web

  • *.htm, *html,这些都是网页的后缀名,如果服务器上一直存在这些东西,我们就可以直接进行读取。

gW0ets.png

  • 静态web存在的缺点
    • Web页面无法动态更新,所有用户看到的都是同一个页面
      • 轮播图,点击特效:伪动态
      • JavaScript[实际开发中,它用的最多]
      • VBScript
    • 它无法和数据库交互(数据无法持久化,用户无法交互)

1.4、动态web

页面会动态展示:Web页面展示的效果因人而异

gW0thR.png

缺点

  • 加入服务器的动态web资源出现了错误,我们需要重新编写我们的后台程序,重新发布
    • 停机维护

优点

  • Web页面可以动态更新,所有用户看到的不是同一个页面
  • 它可以与数据库交互(数据持久化:注册)

gW0WgP.png

新手村:--魔鬼训练(分析原理,看源码)-->pk场

2、web服务器

2.1、技术讲解

  • ASP
    • 微软:国内最早流行的就是ASP
    • 在HTML中嵌入了VB的脚本,ASP+COM
    • 在ASP开发中,Java代码与前端代码写在同一个文件!基本一个页面都有几千行业务代码,极其复杂
    • 维护成本高
  • PHP
    • PHP开发速度很快,功能很强大,跨平台,代码很简单
    • 无法承载大访问量的情况(局限性)
  • jsp/servlet
    • sun公司主推的B/S架构
    • 基于Java语言的(所有的大公司,或者一些开源组件,都是用Java写的)
    • 语法像ASP,ASP-->JSP,加强市场强度

2.2、web服务器

服务器是一种被动的操作,用来处理用户的一些请求和给用户一些响应信息。

IIS

微软的;ASP...,windows自带的

Tomcat

Tomcat是Apache 软件基金会(Apache Software Foundation)的Jakarta 项目中的一个核心项目,最新的Servlet 和JSP 规范总是能在Tomcat 中得到体现,Tomcat 5支持最新的Servlet 2.4 和JSP 2.0 规范。因为Tomcat 技术先进、性能稳定,而且免费,因而深受Java 爱好者的喜爱并得到了部分软件开发商的认可,成为目前比较流行的Web 应用服务器。

Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。对于一个初学web的人来说,它是最佳选择。

Tomcat 实际上运行JSP 页面和Servlet。目前Tomcat最新版本为10.0.5。

工作3-5年之后,可以尝试手写Tomcat服务器

下载tomcat:

  1. 安装 or 解压
  2. 了解配置文件及目录架构
  3. 这个东西的作用

3、Tomcat

3.1、安装tomcat

官网路径:https://tomcat.apache.org/download-90.cgi

gIiiNj.png

3.2、Tomcat启动和配置

gImQ9e.png

启动,关闭tomcat

gImL4O.png

访问测试:http://localhost:8080/

可能遇到的问题:

  1. Java环境变量没有配置
  2. 闪退问题:需要配置兼容性
  3. 乱码配置:配置文件中的设置

3.3、配置

gInWZt.png

可以配置启动的端口号

  • tomcat的默认端口号为:8080
  • mysql:3306
  • http:80
  • https:443
<Connector port="8081" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />

可以配置主机的名称

  • 默认的主机名为:localhost-->127.0.0.1
  • 默认网站应用存放的位置为:webapps
 <Host name="www.edgarStudy.com"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">

高难度面试题:

请你谈谈网站是如何进行访问的!

  1. 输入一个域名:回车

  2. 检查本机的C:\Windows\System32\drivers\etc\hosts配置文件下有没有这个域名映射

    1. 有:直接返回对应的ip地址,这个地址中,有我们需要访问的web程序,可以直接访问
    127.0.0.1 www.edgarStudy.com
    
    1. 没有:去DNS服务器上找,找到的话就返回,找不到就返回找不到

gI1nr4.png

3.4、发布一个网站

不会就先模仿

  • 将自己写的网站,放到服务器(Tomcat)中指定的web应用的文件夹(webapps)下,就可以访问了

网站应有的结构

--webapps : Tomcat服务器的web目录
    -ROOT
    -edgarstudy :网站的目录名
    	-WEB-INF
    		-classes :java程序
            -lib :web应用所依赖的jar包
    		-web.xml :网站配置文件
        -index.html 默认的首页
    	-static
    		-css
    			-style.css
    		-js
    		-img
    	-...

4、Http

4.1、什么是HTTP

HTTP(超文本传输协议)是一个简单的请求-响应协议,它通常运行在TCP上

  • 文本:html,字符串,~...
  • 超文本:图片,音乐,视频,定位,地图
  • 80端口

Https:安全的

  • 443端口

4.2、两个时代

  • http1.0
    • HTTP/1.0:客户端可以与web服务器连接后,只能获得一个web资源,断开连接
  • http2.0
    • HTTP/1.1:客户端可以与web服务器连接后,可以获得多个web资源

4.3、Http请求

  • 客户端---发请求(Request)---服务器

百度:

Request URL: https://www.baidu.com/ 请求地址
Request Method: GET			get方法/post方法
Status Code: 200 OK			状态码:200
Remote(远程) Address: 112.80.248.75:443
Accept: text/html
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9 语言
Cache-Control: max-age=0
Connection: keep-alive

1、请求行

  • 请求行中的请求方式:GET
  • 请求方式:Get,Post, HEAR,DELETE,PUT,TRACE...
    • get:请求能够携带的参数比较少,大小有限制,会在浏览器的URL地址栏显示数据内容,不安全,但高效
    • post:请求能够携带的参数没有限制,大小没有限制,不会在浏览器的URL地址栏显示数据内容,安全,但不高效(5G都出来了,速度并不慢)

2、消息头

Accept:告诉浏览器,它所支持的数据类型
Accept-Encoding:支持哪种编码格式 GBK UTF-8 GB2312 IS08859-1
Accept-Language:告诉浏览器,它的语言环境
Cache-Control:缓存控制
Connection:告诉浏览器,请求完成是断开还是保持连接
HOST:主机

4.4、Http响应

  • 服务器---响应(Response)---客户端

百度:

Cache-Control: private 缓存控制
Connection: keep-alive 连接
Content-Encoding: gzip 编码
Content-Type: text/html;charset=utf-8 类型

1、响应体

Accept:告诉浏览器,它所支持的数据类型
Accept-Encoding:支持哪种编码格式 GBK UTF-8 GB2312 IS08859-1
Accept-Language:告诉浏览器,它的语言环境
Cache-Control:缓存控制
Connection:告诉浏览器,请求完成是断开还是保持连接
HOST:主机
ReFresh:告诉客户端,多久刷新一次
Location:让网页重新定位

2、响应状态码

200:请求相应成功

3xx:请求重定向

  • 重定向:你重新到我给你的新地方去

4xx:找不到资源 404

  • 资源不存在

5xx:服务器代码错误 500 502-网关错误

常见面试题:

当你的浏览器中地址栏输入地址并回车的一瞬间到页面能够展示出来,经历了什么?

5、Maven

我为什么要学习这个技术?

  1. 在JavaWeb开发中,需要使用大量的jar包,我们手动去导入

  2. 如何能够让一个东西自动帮我导入和配置jar包

    由此,Maven诞生了!

5.1、Maven项目架构管理

我们目前用来就是方便导入jar包的

Maven的核心思想:约定大于配置

  • 有约束,不要去违反。

Maven会规定好你该如何去编写我们的java代码,必须要按照这个规范来

5.2、下载安装Maven

官网路径:https://maven.apache.org/download.cgi

gT2jAJ.png

下载完成后,解压即可

5.3、配置环境变量

在我们的系统环境变量中

配置如下配置:

  • M2_HOME maven目录下的bin目录
  • MAVEN_HOME maven的目录
  • 在系统的path中配置 %MAVEN_HOME%\bin

测试Maven是否安装成功,保证必须配置完毕!

gTfy11.png

5.4、阿里云镜像

  • 镜像:mirrors
    • 作用:加速我们的下载
  • 国内建议使用阿里云镜像
<mirror>
  <id>nexus-aliyun</id>
  <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
  <name>Nexus aliyun</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror> 

5.5、本地仓库

建立一个本地仓库 localRepository

<localRepository>C:\Users\86152\Documents\javaTools\maven\apache-maven-3.6.2\maven-repo</localRepository>

5.6、在IDEA中使用Maven

  1. 启动IDEA
  2. 创建一个MavenWeb项目

gbcEJs.png

gbcofs.png

gbcqXV.png

  1. 等待项目初始化完毕(Maven自动导包)

  2. 观察maven仓库中多了什么东西?

  3. IDEA中的Maven设置

    IDEA项目创建成功后,看一眼Maven配置

gbhxAK.png

gbhztO.png

  1. 到这里,Maven在IDEA中的配置和使用就OK了!

5.7、创建一个普通的Maven项目

gqO9AJ.png

gqXurT.png

这个只有在Web应用下才有!

gqjr0U.png

5.8、标记文件夹功能

gqxGGj.png

或者

gLSCND.png

5.9、在IDEA中配置Tomcat

gLpus1.png

gLphwV.png

gLPjwq.png

必须要的配置:为什么会有警告:我们访问一个网站,需要指定一个文件路径

gLizDA.png

gLF6rd.png

gLkblD.png

5.10、pom文件

pom.xml是Maven的核心配置文件

gLAhjg.png

<?xml version="1.0" encoding="UTF-8"?>
<!--Maven版本和头文件-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <!--这里就是我们配置的GAV-->
  <groupId>com.edgar</groupId>
  <artifactId>javaweb01-maven</artifactId>
  <version>1.0-SNAPSHOT</version>
  <!--packaging:项目的打包方式
      jar:Java应用
      war:JavaWeb应用
  -->
  <packaging>war</packaging>

  <!--配置-->
  <properties>
    <!--项目的默认构建编码-->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <!--编码版本-->
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

  <!--项目依赖-->
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
    </dependency>
  </dependencies>

  <!--项目构建用的东西-->
  <build>
    <finalName>javaweb01-maven</finalName>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.1.0</version>
        </plugin>
        <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <version>3.2.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

gLnN4A.png

Maven由于他的约定大于配置,我们之后可能遇到我们写的配置文件,无法导出或生效的问题,解决方案:

<!--在build中配置resources,来防止我们资源导出失败的问题-->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

5.11、目录树

gLMVHS.png

5.12、IDAE全局默认Maven配置

gLH1bQ.png

gLH226.png

5.13、Maven默认web项目中的web.xml版本问题

gLqOHg.png

解决方案:替换为创建项目时所用的tomcat的web.xml

6、Servlet

6.1、Servlet简介

  • Servlet就是Sun公司开发动态Web的技术
  • Sun公司在API中提供了一个接口叫做:Servlet,如果你想开发一个Servlet程序,只需两个步骤:
    • 编写一个类,实现Servlet接口(编写一个普通类,继承HttpServlet,重写doPost\doGet方法)
    • 把开发好的Java类部署到Web服务器中(把实现好的Java类注册到web.xml文件中,并配置映射路径)
  • Servlet接口Sun公司有两个默认的实现类:HttpServlet

6.2、HelloServlet

  1. 构建一个普通的Maven项目,删掉里面的src目录,以后我们的学习就在这个项目里面建立Moudle;这个空的工程就是Maven的主工程

  2. 关于Maven父子工程的理解:

    父项目中会有

    <modules>
        <module>servlet-01</module>
    </modules>
    

    子项目中会有(IDEA3.3的web模板没有,需要自己配)

    <parent>
    <groupId>com.edgar</groupId>
    <artifactId>javaweb-02-servlet</artifactId>
    <version>1.0-SNAPSHOT</version>
    </parent>
    

    父项目中的java子项目可以直接使用父项目的jar包,但父项目不能使用子项目独有的jar包

    son extends father
    
  3. Maven的环境优化

    1. 修改web.xml为tomcat的web.xml
    2. 将maven的结构搭建完整(返回上面看5.7、5.8)
  4. 编写一个Servlet程序

    1. 编写一个普通类,继承HttpServlet,重写doPost\doGet方法
    package com.edgar.servlet;
    
    
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.IOException;
    import java.io.PrintWriter;
    
    public class HelloServlet extends HttpServlet {
    
        //由于get或者post只是请求实现的不同方式,可以相互调用,业务逻辑都一样;
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //ServletOutputStream outputStream = resp.getOutputStream();
            PrintWriter writer = resp.getWriter();//响应流
            writer.write("Hello,Servlet");
        }
    
        @Override
        protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            this.doGet(req, resp);
        }
    }
    
    
  5. 编写Servlet的映射

    为什么需要映射:我们写的是Java程序,但是要通过浏览器访问,而浏览器需要连接web服务器,所以我们需要在web服务器中注册我们写的Servlet,还需要给浏览器一个能访问的路径。

<!--注册Servlet-->
<servlet>
    <servlet-name>hello</servlet-name>
    <servlet-class>com.edgar.servlet.HelloServlet</servlet-class>
</servlet>
<!--Servlet的请求路径-->
<servlet-mapping>
    <servlet-name>hello</servlet-name>
    <url-pattern>/hello</url-pattern>
</servlet-mapping>
  1. 配置Tomcat

    注意:配置项目发布的路径即可

    具体如何配置,可返回上面看5.9

  2. 启动Tomcat

    测试访问路径:http://localhost:8080/s1/hello

6.3、Servlet原理

Web容器:tomcat

Web服务器:web.xml

很多人把Web容器和Web服务器理解为一个东西

Servlet是由Web服务器(web.xml)调用的,Web服务器在收到浏览器请求之后,会:

gXYOBj.png

6.4、Mapping的问题

  1. 一个Servlet可以指定一个映射路径

    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
    
  2. 一个Servlet可以指定多个映射路径

    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello2</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello3</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello4</url-pattern>
    </servlet-mapping>
    
  3. 一个Servlet可以指定通用映射路径

    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello/*</url-pattern>
    </servlet-mapping>
    
  4. 默认请求路径

    <!-- * 是通配符-->
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
    
  5. 指定后缀

    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>*.edgar</url-pattern>
    </servlet-mapping>
    
  6. 优先级问题

    指定了固有的映射路径优先级最高,如果找不到就会走默认处理请求

    <!--404-->
    <servlet>
        <servlet-name>error</servlet-name>
        <servlet-class>com.edgar.servlet.ErrorServlet</servlet-class>
    </servlet>
    <!--Servlet的请求路径-->
    <servlet-mapping>
        <servlet-name>error</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
    

6.5、ServletContext(全局对象)

web容器在启动的时候,它会为每个web程序都创建一个对应的ServletContext对象,它代表了当前的web应用;

6.5.1.共享数据

我在这个HelloServlet中保存的数据,可以在另外一个GetServlet中拿到

package com.edgar.servlet;


import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class HelloServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        ServletContext servletContext = this.getServletContext();
        String username="丁家丞";
        servletContext.setAttribute("username",username);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }


}

package com.edgar.servlet;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class GetServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        ServletContext servletContext = this.getServletContext();
        String unsername = (String) servletContext.getAttribute("username");
        resp.setContentType("text/html");
        resp.setCharacterEncoding("utf-8");
        resp.getWriter().write("名字:"+unsername);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

<?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"
         metadata-complete="true">

    <servlet>
        <servlet-name>hello</servlet-name>
        <servlet-class>com.edgar.servlet.HelloServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
    <servlet>
        <servlet-name>getc</servlet-name>
        <servlet-class>com.edgar.servlet.GetServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>getc</servlet-name>
        <url-pattern>/getc</url-pattern>
    </servlet-mapping>
</web-app>

测试访问结果;

6.5.2、获取初始化参数

<context-param>
    <param-name>url</param-name>
    <param-value>jdbc:mysql://localhost:3306/mybatis</param-value>
</context-param>
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    ServletContext servletContext = this.getServletContext();
    String url = servletContext.getInitParameter("url");
    resp.getWriter().write(url);
}

6.5.3、请求转发

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    ServletContext servletContext = this.getServletContext();
    //RequestDispatcher requestDispatcher = servletContext.getRequestDispatcher("/gp"); // 转发的请求路径
    //requestDispatcher.forward(req,resp); //调用forward实现请求转发
    servletContext.getRequestDispatcher("/gp").forward(req,resp);
}

gjitRf.png

6.5.4、读取资源文件

Properties

  • 在java目录下新建properties
  • 在resources目录下新建properties

发现:都被打包到了同一个路径下:classees,我们俗称这个路径为classpath;

思路:需要一个文件流

username=root
password=123456
package com.edgar.servlet;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

public class PropertiesServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        ServletContext servletContext = this.getServletContext();
        InputStream is = servletContext.getResourceAsStream("/WEB-INF/classes/db.properties");
        Properties prop = new Properties();
        prop.load(is);
        String user = prop.getProperty("username");
        String pwd = prop.getProperty("password");
        resp.getWriter().write(user+":"+pwd);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

访问测试即可;

6.6、HttpServletResponse

web服务器接收到客户端的http请求,针对这个请求,分别创建一个代表请求的HttpServletRequest对象,一个代表响应的HttpServletResponse对象;

  • 如果要获取客户端请求过来的参数:找HttpServletRequest
  • 如股票要给客户端响应一些信息:找HttpServletResponse

1、简单分类

负责向浏览器发送数据的方法

ServletOutputStream getOutputStream() throws IOException;
PrintWriter getWriter() throws IOException;

负责向浏览器发送响应头的方法

void setCharacterEncoding(String var1);
void setContentLength(int var1);
void setContentLengthLong(long var1);
void setContentType(String var1);
void setDateHeader(String var1, long var2);
void addDateHeader(String var1, long var2);
void setHeader(String var1, String var2);
void addHeader(String var1, String var2);
void setIntHeader(String var1, int var2);
void addIntHeader(String var1, int var2);

响应的状态码

int SC_CONTINUE = 100;
    int SC_SWITCHING_PROTOCOLS = 101;
    int SC_OK = 200;
    int SC_CREATED = 201;
    int SC_ACCEPTED = 202;
    int SC_NON_AUTHORITATIVE_INFORMATION = 203;
    int SC_NO_CONTENT = 204;
    int SC_RESET_CONTENT = 205;
    int SC_PARTIAL_CONTENT = 206;
    int SC_MULTIPLE_CHOICES = 300;
    int SC_MOVED_PERMANENTLY = 301;
    int SC_MOVED_TEMPORARILY = 302;
    int SC_FOUND = 302;
    int SC_SEE_OTHER = 303;
    int SC_NOT_MODIFIED = 304;
    int SC_USE_PROXY = 305;
    int SC_TEMPORARY_REDIRECT = 307;
    int SC_BAD_REQUEST = 400;
    int SC_UNAUTHORIZED = 401;
    int SC_PAYMENT_REQUIRED = 402;
    int SC_FORBIDDEN = 403;
    int SC_NOT_FOUND = 404;
    int SC_METHOD_NOT_ALLOWED = 405;
    int SC_NOT_ACCEPTABLE = 406;
    int SC_PROXY_AUTHENTICATION_REQUIRED = 407;
    int SC_REQUEST_TIMEOUT = 408;
    int SC_CONFLICT = 409;
    int SC_GONE = 410;
    int SC_LENGTH_REQUIRED = 411;
    int SC_PRECONDITION_FAILED = 412;
    int SC_REQUEST_ENTITY_TOO_LARGE = 413;
    int SC_REQUEST_URI_TOO_LONG = 414;
    int SC_UNSUPPORTED_MEDIA_TYPE = 415;
    int SC_REQUESTED_RANGE_NOT_SATISFIABLE = 416;
    int SC_EXPECTATION_FAILED = 417;
    int SC_INTERNAL_SERVER_ERROR = 500;
    int SC_NOT_IMPLEMENTED = 501;
    int SC_BAD_GATEWAY = 502;
    int SC_SERVICE_UNAVAILABLE = 503;
    int SC_GATEWAY_TIMEOUT = 504;
    int SC_HTTP_VERSION_NOT_SUPPORTED = 505;

2、下载文件

  1. 要获取下载文件的路径
  2. 下载的文件名是啥?
  3. 设置想办法让浏览器能够支持下载我们需要的东西
  4. 获取下载文件的输入流
  5. 创建缓冲区
  6. 获取OutputStream对象
  7. 将FileOutputStream流写入到缓冲区
  8. 使用OutputStream将缓冲区中的数据输出到客户端
package com.edgar.servlet;


import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URLEncoder;

public class FileServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //1. 要获取下载文件的路径
        String realPath = "E:\\ideaProject\\javaweb-02-servlet\\response\\src\\main\\resources\\丁家丞.jpg";
        System.out.println("下载文件的路径:"+realPath);
        //2. 下载的文件名是啥?
        String fileName = realPath.substring(realPath.lastIndexOf("\\")+1);
        //3. 设置想办法让浏览器能够支持(Content-Disposition)下载我们需要的东西,中文文件名URLEncoder.encode编码,否则有可能乱码
        resp.setHeader("Content-Disposition", "attachment; filename="+ URLEncoder.encode(fileName,"UTF-8"));
        //4. 获取下载文件的输入流
        FileInputStream in = new FileInputStream(realPath);
        //5. 创建缓冲区
        int len=0;
        byte[] buffer = new byte[1024];
        //6. 获取OutputStream对象
        ServletOutputStream os = resp.getOutputStream();
        //7. 将FileOutputStream流写入到缓冲区,使用OutputStream将缓冲区中的数据输出到客户端
        while((len=in.read(buffer))!=-1){
            os.write(buffer,0,len);
        }
        os.close();
        in.close();

    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

3、验证码功能

验证怎么来的?

  • 前端实现
  • 后端实现,需要用到Java的图片类,生成一个图片
package com.edgar.servlet;

import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;

public class ImageServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //如何让浏览器5秒自动刷新一次
        resp.setHeader("refresh", "3");
        //在内存中创建一个图片
        BufferedImage image = new BufferedImage(100, 20, BufferedImage.TYPE_INT_RGB);
        //得到图片
        Graphics2D g = (Graphics2D) image.getGraphics();//笔
        //设置背景颜色
        g.setColor(Color.white);
        g.fillRect(0, 0, 100, 20);
        //给图片生成数据
        g.setColor(Color.red);
        g.setFont(new Font(null, Font.ITALIC, 20));
        g.drawString(makeRandom(), 0, 20);

        //告诉浏览器,这个请求用图片的方式打开
        resp.setContentType("image/jpeg");
        resp.setDateHeader("expires", -1l);
        resp.setHeader("Cache-Control", "no-catch");
        resp.setHeader("Pragma", "no-catch");

        //把图片写给浏览器
        ImageIO.write(image, "jpg", resp.getOutputStream());

    }

    //生成随机数
    public String makeRandom() {
        String num = new Random().nextInt(99999999) + "";
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i < 8 - num.length(); i++) {
            sb.append("0");
        }
        num = sb.toString() + num;
        return num;
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

4、实现重定向

gjitRf.png

一个web资源(B)收到客户端(A)请求后,(B)他会通知客户端(A)去访问另外一个web资源(C),这个过程叫重定向。

常见场景:用户登录

测试:

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

   /* resp.setHeader("location","/r/img");
    resp.setStatus(302);*/
    resp.sendRedirect("/r/img");//重定向
}

面试题:请你聊聊请求转发和重定向的区别?

相同点

  • 页面都会发生变化

不同点

  • 重定向的URL会发生变化,请求转发的URL不会发生变化

6.7、HttpServletRequest

HttpServletRequest代表客户端的请求,用户通过Http协议访问服务器,HTTP请求中的所有信息会被封装到HttpServletRequest,通过这个HttpServletRequest的方法,获得客户端的所有信息。

1、获取前端传递的参数

2CAOIK.png

2、请求转发

  @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        req.setCharacterEncoding("UTF-8");
        resp.setCharacterEncoding("UTF-8");
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        String[] hobbys = req.getParameterValues("hobbys");
        System.out.println("==================");
        System.out.println(username);
        System.out.println(password);
        System.out.println(Arrays.toString(hobbys));
        System.out.println("==================");
        //通过请求转发
        //这里的 / 代表当前应用
        req.getRequestDispatcher("/success.jsp").forward(req, resp);
    }

面试题:请你聊聊请求转发和重定向的区别?

相同点

  • 页面都会发生变化

不同点

  • 重定向的URL会发生变化 302
  • 请求转发的URL不会发生变化 307

7、Cookie、Session

7.1、会话

会话:用户打开一个浏览器,点击了很多超链接,访问多个web资源,关闭浏览器,这个过程可以称之为会话

有状态会话:一个同学来过教室,下次再来教室,我们就会知道这个同学,曾经来过,称之为有状态会话;

你能怎么证明你是西开的学生?

你 西开

  1. 发票 西开给你发票
  2. 学校登记 西开登记你来过了

一个网站,怎么证明你来过?

客户端 服务端

  1. 服务端给客户端一个信件,客户端下次访问服务端带上信件就可以了;cookie
  2. 服务器登记你来过了,下次你来的时候我来匹配你;session

7.2、保存会话的两种技术

cookie

  • 客户端技术(响应,请求)

session

  • 服务器技术,利用这个技术,可以保存用户的会话信息?我们可以把信息或者数据放在session中!

常见:网站登录之后,你下次不用登陆了,第二次访问直接就上去了

7.3、Cookie

  1. 从请求中获取cookie信息
  2. 服务器响应给客户端cookie
Cookie[] cookies = req.getCookies(); //获得cookie
cookie.getName() //获得cookie中的key
cookie.getValue() //获得cookie中的value
new Cookie("lastLoginTime",System.currentTimeMillis()+""); //新建一个cookie
cookie.setMaxAge(24*60*60); //设置cookie的有效期
resp.addCookie(cookie); //响应给客户端一个cookie

cookie:一般会保存在本地的用户目录下appdata

一个网站cookie是否存在上限!聊聊细节问题

  • 一个cookie只能保存一个信息
  • 一个web站点可以给浏览器发送多个cookie,最多存放20个cookie
  • Cookie大小由限制4KB
  • 300个cookie浏览器上限

删除cookie:

  • 不设置有效期,关闭浏览器,自动失效
  • 设置cookie有效期为0

7.4、Session(重点)

什么是Session:

  • 服务器会给每一个用户(浏览器)创建一个Session对象
  • 一个Session独占一个浏览器,只要浏览器没有关闭,这个Session就存在
  • 用户登陆之后,整个网站它都可以访问!-->保存用户的信息;保存购物车的信息......

Session和Cookie的区别:

  • Cookie是把用户的数据写给用户的浏览器,浏览器保存
  • Session是把用户的数据写到用户独占的Session中,服务器端保存(保存重要的信息,减少服务器资源的浪费),会通过cookie返回给浏览器一个sessionid
  • Session对象由服务器端创建

使用场景:

  • 保存一个登录用户的信息
  • 购物车信息
  • 在整个网站中经常会使用的数据,我们将它保存在Session中

使用Session:

 @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //解决乱码问题
        req.setCharacterEncoding("UTF-8");
        resp.setCharacterEncoding("UTF-8");
        resp.setContentType("text/html;charset=utf-8");
        //得到session
        HttpSession session = req.getSession();

        //给session存放东西
        session.setAttribute("name",new Person("丁家丞",18));

        //获取session的id
        String id = session.getId();

        //判断session是不是新创建
        if(session.isNew()){
            resp.getWriter().write("session创建成功,ID:"+id);
        }else{
            resp.getWriter().write("session已经在服务器中存在,ID:"+id);
        }

        //Session创建的时候做了什么
//        Cookie cookie = new Cookie("JSESSIONID", id);
//        resp.addCookie(cookie);
    }
//得到Session
HttpSession session = req.getSession();
Person person = (Person) session.getAttribute("name");
session.removeAttribute("name");
session.invalidate();//手动注销session

会话自动过期:web.xml配置

<!--设置session的默认失效时间-->
<session-config>
    <!--1分钟后失效,以分钟为单位-->
    <session-timeout>1</session-timeout>
</session-config>

8、JSP

8.1、什么是JSP

Java Server Pages:Java服务器端页面,也和Servlet一样,用于动态Web技术!

最大的特点:

  • 写JSP就像在写HTML
  • 区别:
    • HTML只给用户提供静态的数据
    • JSP页面中可以嵌入JAVA代码,为用户提供动态数据

8.2、JSP原理

思路:JSP到底怎么执行的?

  • 代码层面没有任何问题

  • 服务器内部工作

    tomcta中有一个work目录

    IDEA中使用tomcat的会在IDEA中的tomcta中产生一个work目录

2AeZuT.png

地址:打开idea-->help-->show log in explorer的上一层

发现页面转变成了Java程序!

2Ae4Gn.png

浏览器向服务器发送请求,不管访问什么资源,其实都是在访问Servlet!

JSP最终也会被转换成为一个Java类~

JSP本质上就是一个Servlet

//初始化
public void _jspInit() {
}
//销毁
public void _jspDestroy() {
}
//JSPService
public void _jspService(HttpServletRequest request, HttpServletResponse response)
  1. 判断请求
  2. 内置一些对象
final javax.servlet.jsp.PageContext pageContext;			//页面上下文
javax.servlet.http.HttpSession session = null;				//session
final javax.servlet.ServletContext application;				//application本质就是ServletContext
final javax.servlet.ServletConfig config;					//config
javax.servlet.jsp.JspWriter out = null;						//out
final java.lang.Object page = this;							//page:当前
HttpServletRequest request 									//请求
HttpServletResponse response								//响应
  1. 输出页面前增加的代码
response.setContentType("text/html");						//设置响应的页面类型	
pageContext = _jspxFactory.getPageContext(this, request, response,
        null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
  1. 以上的这些个对象我们可以在JSP页面中直接使用!

2A1FXR.png

在JSP页面中,

只要是JAVA代码就会被原封不动的输出;

String name= "edgar";
out.print(name);

如果是HTML代码,就会被转换为:

out.write("<html>\r\n");

这样的格式输出

8.3、JSP基础语法

任何语言都有自己的语法,JAVA中有,JSP作为java技术的一种应用,它拥有一些自己扩充的语法(了解,知道即可!),Java所有语法都支持!

JSP表达式

<%--JSP表达式
作用:用来将程序的输出,输出到客户端
<%= 变量或表达式%>
--%>
<%= new java.util.Date()%>

jsp脚本片段

<%--jsp脚本片段--%>
<%
	int sum=0;
	for (int i = 0; i <= 100; i++) {
  		sum+=i;
	}
	out.println("<h1>Sum="+sum+"</h1>");
%>

脚本片段的再实现

<%
	int x =10;
	out.println(x);
%>
	<p>这是一个JSP文件</p>
<%
	int y =20;
	out.println(y);
%>

<%--在代码中嵌入HTML元素--%>
<%
	for (int i = 0; i < 5; i++) {
%>
  	<h1>Hello,World <%=i%></h1>
<%
}
%>

jsp声明

<%!
    static{
      System.out.println("loading Servlet~");
    }

    private int globalVar = 0;
    public void edgar(){
      System.out.println("进入了方法edgar!");
  }
%>

JSP声明:会被编译到JSP生成Java的类中!其他的,就会被生成到_jspService方法中!

在JSP中,嵌入Java代码即可

<%%>
<%=%>
<%!%>

<!--我是HTML的注释--%>
<%--我是JSP的注释--%>

JSP的注释,不会在客户端显示,HTML就会!

8.4、JSP指令

<%@page args....%>
<%@include file=""%>

<%--@include会将三个页面合三为一--%>
<%@include file="common/header.jsp"%>
<h1>网页主体</h1>
<%@include file="common/footer.jsp"%>

<hr>

<%--jsp标签
jsp:include:拼接页面,本质还是三个
--%>
<jsp:include page="/common/header.jsp"/>
<h1>网页主体</h1>
<jsp:include page="/common/footer.jsp"/>

8.5、9大内置对象

  • PageContext 存东西
  • Request 存东西
  • Response
  • Session 存东西
  • Application [ServletContext] 存东西
  • config [ServletConfig]
  • out
  • page,不用了解
  • exception
<%
    pageContext.setAttribute("name1","edgar01");//保存的作用域只在一个页面中有效
    request.setAttribute("name2","edgar02");//保存的数据只在一次请求中有效,请求转发也会携带这个数据
    session.setAttribute("name3","edgar03");//保存的数据只在一次会话中有效,从打开浏览器到关闭浏览器
    application.setAttribute("name4","edgar04");//保存的数据只在服务器中有效,从打开服务器到关闭服务器
%>

request:客户端向服务器发送请求,产生的数据,用户看完就没用了,比如:新闻,用户看完没用的!

session:客户端向服务器发送请求,产生的数据,用户用完一会还有用,比如:购物车

application:客户端向服务器发送请求,产生的数据,一个用户用完了,其他用户还可能用,比如:聊天数据

测试代码:

pageContextDemo01.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<%--内置对象--%>

<%
    pageContext.setAttribute("name1","edgar01");//保存的作用域只在一个页面中有效
    request.setAttribute("name2","edgar02");//保存的数据只在一次请求中有效,请求转发也会携带这个数据
    session.setAttribute("name3","edgar03");//保存的数据只在一次会话中有效,从打开浏览器到关闭浏览器
    application.setAttribute("name4","edgar04");//保存的数据只在服务器中有效,从打开服务器到关闭服务器
%>
<%--脚本片段的代码,会被原封不动的生成到xxx_jsp.java文件中
要求:这里面的代码:必须保证Java语法的正确性
--%>
<%
    //从pageContext取出,我们通过寻找的方式来
    //从底层到高层(作用域):page->request->session->application
    String name1 = (String) pageContext.findAttribute("name1");
    String name2 = (String) pageContext.findAttribute("name2");
    String name3 = (String) pageContext.findAttribute("name3");
    String name4 = (String) pageContext.findAttribute("name4");
    String name5 = (String) pageContext.findAttribute("name5");
    pageContext.forward("/pageContextDemo02.jsp");
%>

<%--使用EL表达式输出 ${}--%>
<h1>取出的值为:</h1>
<h3>${name1}</h3>
<h3>${name2}</h3>
<h3>${name3}</h3>
<h3>${name4}</h3>
<h3>${name5}</h3> <%--不存在--%>
<h3><%=name5%></h3>
</body>
</html>

pageContextDemo02.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<%--脚本片段的代码,会被原封不动的生成到xxx_jsp.java文件中
要求:这里面的代码:必须保证Java语法的正确性
--%>
<%
    //从pageContext取出,我们通过寻找的方式来
    //从底层到高层(作用域):
    String name1 = (String) pageContext.findAttribute("name1");
    String name2 = (String) pageContext.findAttribute("name2");
    String name3 = (String) pageContext.findAttribute("name3");
    String name4 = (String) pageContext.findAttribute("name4");
    String name5 = (String) pageContext.findAttribute("name5");
%>

<%--使用EL表达式输出 ${}--%>
<h1>取出的值为:</h1>
<h3>${name1}</h3>
<h3>${name2}</h3>
<h3>${name3}</h3>
<h3>${name4}</h3>
<h3>${name5}</h3> <%--不存在--%>
<h3><%=name5%></h3>
</body>
</html>

pageContextDemo03.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<%--
//scope作用域
public void setAttribute(String name, Object attribute, int scope) {
switch(scope) {
case 1:
this.mPage.put(name, attribute);
break;
case 2:
this.mRequest.put(name, attribute);
break;
case 3:
this.mSession.put(name, attribute);
break;
case 4:
this.mApp.put(name, attribute);
break;
default:
throw new IllegalArgumentException("Bad scope " + scope);
}

}--%>
<%
    pageContext.setAttribute("hello","hello",PageContext.SESSION_SCOPE);
    //session.setAttribute("hello","hello");
%>
</body>
</html>

pageContextDemo04.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<%
    pageContext.forward("/index.jsp");
    //request.getRequestDispatcher("/index.jsp").forward(request,response);
%>
</body>
</html>

8.6、JSP标签、JSTL标签、EL表达式

<!--JSTL 表达式依赖-->
<dependency>
    <groupId>javax.servlet.jsp.jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
<!-- standard标签库-->
<dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
</dependency>
<dependency>
	<groupId>javax.servlet.jsp.jstl</groupId>
	<artifactId>jstl-api</artifactId>
	<version>1.2</version>
</dependency>
<dependency>
	<groupId>org.glassfish.web</groupId>
	<artifactId>jstl-impl</artifactId>
	<version>1.2</version>
</dependency>

EL表达式:${}

  • 获取数据
  • 执行运算
  • 获取web开发的常用对象

JSP标签:

<%--
http://localhost:8080/jsptag2.jsp?name=edgar&age=18
--%>
<jsp:forward page="/jsptag2.jsp">
    <jsp:param name="name" value="edgar"/>
    <jsp:param name="age" value="18"/>
</jsp:forward>
名字:<%=request.getParameter("name")%>
年龄:<%=request.getParameter("age")%>

JSTL表达式:

JSTL的标签库的使用就是为了弥补HTML标签的不足;它自定义了许多的标签,可以供我们使用,标签的功能和Java代码一样!

格式化标签

SQL标签

XML 标签

核心标签(掌握部分)

2VhSeJ.png

JSTL标签库使用步骤

  • 引入对应的taglib
  • 使用其中的方法
  • 在Tomcat也需要引入jstl的jar包,否则会报错:JSTL解析错误

代码测试:

c:if

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%--引入JSTL的核心标签库,我们才能使用JSTL标签--%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<h4>if测试</h4>
<hr>

<form action="coreif.jsp" method="get">
    <%--
    EL表达式获取表单中的数据
    ${param.参数名}
    --%>
    <input type="text" name="username" value="${param.username}">
    <input type="submit">
</form>

<%--判断如果提交的用户名是管理员,则登陆成功--%>
<c:if test="${param.username=='admin'}" var="isAdmin">
    <c:out value="管理员欢迎您"/>
</c:if>

<%--自闭合标签--%>
<c:out value="${isAdmin}"/>
</body>
</html>

c:when

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<%--定义一个变量score,值为85--%>
<c:set var="score" value="55" />
<c:choose>
    <c:when test="${score>=90}">
        你的成绩优秀
    </c:when>
    <c:when test="${score>=80}">
        你的成绩良好
    </c:when>
    <c:when test="${score>=70}">
        你的成绩一般
    </c:when>
    <c:when test="${score>=60}">
        你的成绩及格
    </c:when>
    <c:otherwise>
        你的成绩不及格
    </c:otherwise>
</c:choose>
</body>
</html>

c:forEach

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page import="java.util.ArrayList" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<%
    ArrayList<Object> people = new ArrayList<>();
    people.add(0,"张三");
    people.add(1,"李四");
    people.add(2,"王五");
    people.add(3,"赵六");
    people.add(4,"田七");
    request.setAttribute("list",people);
%>

<%--
var,    每一次遍历出来的变量
items,  要遍历的对象
begin,   哪里开始
end,    到哪里
step,    步长
--%>
<c:forEach var="people" items="${list}">
    <c:out value="${people}"/><br>
</c:forEach>
<hr>
<c:forEach var="people" items="${list}" begin="1" end="3" step="2" >
    <c:out value="${people}"/><br>
</c:forEach>
</body>
</html>

9、JavaBean

实体类

JavaBean有特定的写法:

  • 必须要有一个无参构造
  • 属性必须私有化
  • 必须有对应的get/set方法

一般用来和数据库的表做映射 ORM;

ORM:对象关系映射

  • 表-->类
  • 字段-->属性
  • 行----->对象

people表

id name age address
1 张三 18 无锡
2 李四 19 上海
3 王五 20 香港
package com.edgar.pojo;

public class People {

    private int id;
    private String name;
    private int age;
    private String address;

    public People(int id, String name, int age, String address) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.address = address;
    }

    public People() {
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    @Override
    public String toString() {
        return "People{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", age=" + age +
                ", address='" + address + '\'' +
                '}';
    }
}

<%@ page import="com.edgar.pojo.People" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<%
//    People people = new People();
//    people.setId();
//    people.setName();
//    people.setAge();
//    people.setAddress();
%>
<jsp:useBean id="people" class="com.edgar.pojo.People" scope="page">
    <jsp:setProperty name="people" property="id" value="1"/>
    <jsp:setProperty name="people" property="name" value="edgar"/>
    <jsp:setProperty name="people" property="age" value="18"/>
    <jsp:setProperty name="people" property="address" value="上海"/>
</jsp:useBean>
<%--<%=people.getId()%>--%>
id:<jsp:getProperty name="people" property="id"/>
姓名:<jsp:getProperty name="people" property="name"/>
年龄:<jsp:getProperty name="people" property="age"/>
地址:<jsp:getProperty name="people" property="address"/>

</body>
</html>

10、MVC三层架构

什么是MVC:Model View Controller 模型、视图、控制器

10.1、早些年:

2ZkHKK.png

用户直接访问控制层,控制层可以直接操作数据库;

servlet--CRUD-->数据库
弊端:程序十分臃肿,不利于维护 
servlet的代码中:处理请求、响应、视图跳转、处理JDBC、处理业务代码、处理逻辑代码
    
架构:没有什么是加一层解决不了的
程序猿调用
|
JDBC
|
Mysql	Oracle	Sqlserver ....    

10.2、MVC三层架构

2ZEky6.png

Model

  • 业务处理:业务逻辑(Service)
  • 数据持久层:CRUD(Dao)

View

  • 展示数据
  • 提供链接发起Servlet请求(a,form,img...)

Controller(Servlet)

  • 接收用户的请求:(req:请求参数、Session信息...)
  • 交给业务层处理对应的代码
  • 控制视图的跳转
登录--->接收用户的登录请求--->处理用户的请求(获取用户登录的参数,username,password)--->交给业务层处理登录业务(判断用户名密码是否正确;事务)--->Dao层查询用户名和密码信息返回业务层--->数据库

11、Filter(重点)

Filter:过滤器,用来过滤网站的数据;

  • 处理中文乱码
  • 登录验证

Filter开发步骤:

  1. 导包
  2. 编写过滤器
    1. 导包不要错 package javax.servlet.Filter
    2. 实现Filter接口,重写对应方法
package com.edgar.filter;

import javax.servlet.*;
import java.io.IOException;

public class CharacterEncodingFilter implements Filter {
    //初始化:web服务器启动,过滤器就初始化了
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("CharacterEncodingFilter初始化");
    }
    //FilterChain:链
    /*
     1.过滤中的所有代码,在过滤特定请求的时候都会执行
     2.必须要让过滤器继续通行
      chain.doFilter(request,response);
    */
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
        request.setCharacterEncoding("UTF-8");
        response.setCharacterEncoding("UTF-8");
        response.setContentType("text/html;charset=utf-8");
        System.out.println("CharacterEncodingFilter执行前....");
        chain.doFilter(request,response);//让我们的请求继续走,如果不写,程序到这里就被拦截停止!
        System.out.println("CharacterEncodingFilter执行前....");
    }
    //销毁:web服务器关闭,过滤器就销毁
    public void destroy() {
        System.out.println("CharacterEncodingFilter销毁");
    }
}

  1. 在web.xml中配置Filter
<filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>com.edgar.filter.CharacterEncodingFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <!--只要是/servlet的任何请求,会经过这个过滤器-->
    <url-pattern>/servlet/*</url-pattern>
</filter-mapping>

12、监听器

实现一个监听器接口;(有N种)

  1. 编写一个监听器

    实现监听器的接口

package com.edgar.listener;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;

//统计网站的在线人数:统计session
public class OnlineCountListener implements HttpSessionListener {
    //创建session监听
    //一旦创建session就会触发一次这个事件!
    public void sessionCreated(HttpSessionEvent se) {
        ServletContext ctx = se.getSession().getServletContext();
        Integer onlineCount = (Integer) ctx.getAttribute("OnlineCount");

        if(onlineCount==null){
            onlineCount=new Integer(1);
        }else{
            int i = onlineCount.intValue();
            onlineCount=new Integer(i+1);
        }
        ctx.setAttribute("OnlineCount",onlineCount);
    }
    //销毁session监听
    //一旦销毁sessionn就会触发一次这个事件!
    public void sessionDestroyed(HttpSessionEvent se) {
        ServletContext ctx = se.getSession().getServletContext();
        Integer onlineCount = (Integer) ctx.getAttribute("OnlineCount");

        if(onlineCount==null){
            onlineCount=new Integer(0);
        }else{
            int i = onlineCount.intValue();
            onlineCount=new Integer(i-1);
        }
        ctx.setAttribute("OnlineCount",onlineCount);
    }
}

  1. web.xml注册监听器
<!--注册监听器-->
<listener>
    <listener-class>com.edgar.listener.OnlineCountListener</listener-class>
</listener>
  1. 看情况是否使用

13、过滤器、监听器的常见应用

监听器:GUI编程中经常使用

package com.edgar.listener;

import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class TestPanel {

    public static void main(String[] args) {
        Frame frame = new Frame("中秋节快乐");//新建一个窗体
        Panel panel = new Panel(null);//新建一个面板
        frame.setLayout(null);//设置窗体的布局
        frame.setBounds(300,300,500,500);//设置位置和大小
        frame.setBackground(new Color(0,0,255));//设置背景颜色
        panel.setBounds(50,50,300,300);//设置位置和大小
        panel.setBackground(new Color(0,255,0));//设置背景颜色

        frame.add(panel);//添加组件
        frame.setVisible(true);//设置可见

        //监听事件,监听关闭事件
        frame.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                System.exit(0);
            }
        });

    }
}

用户登录之后才能进入主页!用户注销后就不能进入主页了!

  1. 用户登陆之后,向Session中放入用户的数据
  2. 进入主页的时候要判断用户是否已经登录;要求:在过滤器中实现
package com.edgar.util;

public class Constant {
    public final static String USER_SESSION="USER_SESSION";
}

package com.edgar.servlet;

import com.edgar.util.Constant;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class LoginServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //获取前端请求的参数
        String username = req.getParameter("username");

        if("admin".equals(username)){//登陆成功
            req.getSession().setAttribute(Constant.USER_SESSION,req.getSession().getId());
            resp.sendRedirect("/sys/main.jsp");
        }else{//登陆失败
            resp.sendRedirect("/error.jsp");
        }
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

package com.edgar.servlet;

import com.edgar.util.Constant;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class LogoutServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        Object user_session = req.getSession().getAttribute(Constant.USER_SESSION);
        if(user_session!=null){
            req.getSession().removeAttribute(Constant.USER_SESSION);
            resp.sendRedirect("/login.jsp");
        }else{
            resp.sendRedirect("/login.jsp");
        }
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

package com.edgar.filter;

import com.edgar.util.Constant;
import com.sun.deploy.net.HttpRequest;

import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class SysFilter implements Filter {
    public void init(FilterConfig filterConfig) throws ServletException {

    }

    public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws IOException, ServletException {
        HttpServletRequest request=(HttpServletRequest)req;
        HttpServletResponse response=(HttpServletResponse)resp;
        Object user_session = request.getSession().getAttribute(Constant.USER_SESSION);
        if(user_session==null){
            response.sendRedirect("/login.jsp");
        }

        chain.doFilter(req,resp);
    }

    public void destroy() {

    }
}

14、JDBC

JDBC具体内容可看MySQL数据库入门,这边只是简单的举例~

package com.edgar.jdbc;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;

public class TestJdbc {

    public static void main(String[] args) throws Exception {
        // 1.加载驱动
        Class.forName("com.mysql.jdbc.Driver");
        // 2.用户信息和url
        // useUnicode=true&characterEncoding=utf8&useSSL=false
        String url = "jdbc:mysql://localhost:3306/jdbcStudy?useUnicode=true&characterEncoding=utf8&useSSL=false";
        String username="root";
        String password="123456";
        // 3.连接成功,数据库对象
        Connection connection = DriverManager.getConnection(url, username, password);
        // 4.执行SQL的对象
        Statement statement = connection.createStatement();
        // 5.执行SQL的对象 去 执行SQL,可能存在结果,查看返回结果
        String sql="select * from users";
        ResultSet resultSet = statement.executeQuery(sql);// 返回的结果集,结果集中封装了我们全部的查询出来的结果
        while(resultSet.next()){
            System.out.println("id="+resultSet.getObject("id"));
            System.out.println("name="+resultSet.getObject("NAME"));
            System.out.println("password="+resultSet.getObject("PASSWORD"));
            System.out.println("email="+resultSet.getObject("email"));
            System.out.println("birthday="+resultSet.getObject("birthday"));
            System.out.println("==============================");
        }
        // 6、释放连接
        resultSet.close();
        statement.close();
        connection.close();
    }

}

pom.xml

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.47</version>
</dependency>

15、Junit

package com.edgar.junit;

import org.junit.Test;

public class TestJunit {

    @Test
    public void sayHello(){
        System.out.println("Hello,Junit!");
    }
}

pom.xml

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.13.2</version>
</dependency>
posted @ 2021-06-05 23:26  EdgarStudy  阅读(76)  评论(0编辑  收藏  举报