JavaWeb

时间:2023-02-14 20:06:00

Java Web

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 。。。多个web资源,这些web资源可以被外界访问,对外界提供服务
  • 你们能访问到的任何一个页面或者资源,都存在于这个世界的某一个角落的计算机上
  • URl
  • 这个统一的web资源会被放在同一个文件夹下,web应用程序--->Tomcat:服务器
  • 一个web应用由多个程序组成(静态、动态)
    • html、css、js
    • jsp、servlet
    • java程序
    • jar包
    • 配置文件(Properties)

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

1.3、静态web

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

JavaWeb

  • 静态web存在的缺点

    • web页面无法动态更新,所有用户都访问到同一个页面

      • 轮播图,点击特效,伪动态
      • JavaScript(实际开发用的最多)
      • VBScript
    • 它无法和数据交互,(数据无法持久化,用户无法交互)

1.4、动态Web

页面会动态展示:“页面效果因人而异”

JavaWeb

缺点:

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

优点:

  • web页面可以动态更新,所有用户看到的都不是同一个页面

  • 它可以和数据交互,(数据持久化,用户可以交互)

JavaWeb

可以通过JDBC访问数据库。

2、web服务器

2.1、技术讲解

ASP:

  • 微软:国内最早流行的就是ASP
  • 在HTML中嵌入了VB脚本,ASP + COM
  • 在ASP开发中,基本一个业务就有几千行代码,页面极其混乱,
  • 维护成本高

PHP:

  • 开发速度很快,功能很强大,跨平台,代码简单(70%);
  • 无法承载大量访问量的情况下(局限性);

JSP/Servlet:

sun公司的主推的B/S

B/S:浏览和服务器

C/S:客户端和服务器

  • 基于Java语言的(所有的大公司,或者一些开源的组件,都是用Java写的)
  • 可以承载三高问题带来的影响;(高并发,高可用,高性能)
  • 语法有点像ASP

2.2、web服务器

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

IIS

微软的,ASP,,,Windows中自带的

Tomcat:

面向百度编程

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

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

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

下载Tomcat:

  1. 安装 or 解压
  2. 了解配置文件及目录结构

3、Tomcat

3.1、安装

JavaWeb

3.2、Tomcat配置和启动

启动:

start.bat

JavaWeb

关闭:

JavaWeb

可能遇到的问题:

  1. java环境变量没有配置
  2. 闪退问题,需要配置兼容性问题

3.3、配置

可以配置启动的端口号

  • tomcat的默认端口号为:8080.

  • mysql: 3306

  • http: 80.

  • https: 443

    - <connector port="8081" protoco1="HTTP/1.1"
      connectionTimeout="20000"
      redirectPort="8443”/>
    
    
    

可以配置主机名称:

  • 默认的主机名为: localhost->127.0.0.1

  • 默认网站应用存放的位置为: webapps

<Host name="www. qinjiang.com"appBase="webapps"
		unpackwARS="true" autoDeploy="true">

高难度面试题:

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

1.输入一个域名;回车

⒉.检查本机的C:\Windows\System32\driversletclhosts配置文件下有没有这个域名映射;

  • 1.有:直接返回对应的ip地址,这个地址中,有我们需要访问的web程序,可以直接访问

    127.0.0.1		qinjaing
    
  • ⒉.没有:去DNS服务器找,找到的话就返回,找不到就返回找不到;

JavaWeb

3、可以配置一下环境变量(可选项)

3.4、发布一个web网站

不会就先模仿

  • 将自己写的网站,放到服务器(Tomcat)中指定的web应用的文件夹(webapps)下,就可以访问网站应该有的结构
--webapps : Tomcat服务器的web目录
	-ROOT
	-kuangstudy :网站的目录名
		-WEB-INF
			-classes : java程序
			-lib: web应用所依赖的jar包
            -web.xm1 :网站配置文件
        - index.htm1 默认的首页
        -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
    • http1.1:客户端与web服务器连接后,可以获得多个web资源。

4.3、http请求

  • 客户端-----发请求--------服务器

百度:

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

1、请求行

  • 请求行中的请求方式:GET
  • 请求方式:GET、POST、HEAD 、DELETE 、PUT 、TRACT
    • get,请求能够携带的参数比较少,大小有限制,会在浏览器的URL地址栏显示数据内容,不安全,但高效
    • post:请求能够携带的参数没有限制,大小没有限制、不会再浏览器的URL地址栏显示数据内容,安全,但不高效

2、请求头

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

4.4、http响应

  • 服务器------响应--------客户端

    百度:

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

1、响应体

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

2、响应状态码

200:请求响应成功

3**:请求重定向

  • ​ 重定向,重新去找新的地址

404:请求资源失败,找不到

  • 资源不存在

5**:服务器代码失败 500

​ 502:网关错误

常见面试题:

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

5、Maven

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

1、在Javaweb学习中,我们需要使用大量jar包,我们得手动去导入

2、如何能够让一个东西自动帮我们导入和配置

​ 由此,maven诞生了

5.1、Maven项目架构管理工具

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

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

Maven会规定我们如何去编写java代码,我们必须按照规定来写。

5.2、Maven下载

官方下载

JavaWeb

5.3、配置环境变量

在我们的系统环境变量中

配置如下配置:

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

JavaWeb

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

5.4、阿里云镜像

  • 镜像:mirrors

    • 作用:加速我们的下载
  • 国内建议使用阿里云

<mirror>
         <id>nexus-aliyun</id>
         <mirrorOf>*</mirrorOf>
         <name>Nexus aliyun</name>
         <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror> 

5.5、本地仓库

在本地的仓库,远程仓库;

建立一个本地仓库:localRepository

<localRepository>D:\MySQL\apache-maven-3.8.3\maven-repo</localRepository>

5.6、在IDEA中使用Maven

1、创建一个MavenWeb项目

JavaWeb

JavaWeb

2、等待项目初始化完毕

JavaWeb

3、用IDEA设置maven

JavaWeb

JavaWeb

5.7、在IDEA中配置Tomcat

JavaWeb

JavaWeb

解决警告问题

为什么会有这个问题,我们访问一个网站,需要指定一个文件夹名,

JavaWeb

启动Tomcat

JavaWeb

启动成功弹出:

JavaWeb

5.8、pom文件

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

JavaWeb

<?xml version="1.0" encoding="UTF-8"?>

<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>org.example</groupId>
  <artifactId>Javaweb-01-maven</artifactId>
  <version>1.0-SNAPSHOT</version>
  <!--项目的打包方式:
  jar:java应用
  war:Javaweb应用
  -->
  <packaging>war</packaging>

  <name>Javaweb-01-maven Maven Webapp</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

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

    <!--项目依赖-->
  <dependencies>
    <!--具体依赖的jar包配置文件-->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <!--项目构建用的东西-->
  <build>
    <finalName>Javaweb-01-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>

Maven由于它的约定大于配置,我们之后可能遇到我们写的配置文件,无法被导出或者生效问题,

解决方案:

<build>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <excludes>
                <exclude>**/*.properties</exclude>
                <exclude>**/*.xml</exclude>
            </excludes>
            <filtering>false</filtering>
        </resource>
        <resource>
            <directory>src/main/java</directory>
            <excludes>
                <exclude>**/*.properties</exclude>
                <exclude>**/*.xml</exclude>
            </excludes>
            <filtering>false</filtering>
        </resource>
    </resources>
</build>

6、Maven仓库的使用

JavaWeb

JavaWeb

JavaWeb

6、Servlet

6.1、Servlet简介

  • Servlet就是sun公司开发动态web的一门技术
  • sun在这些API中提供一个接口叫:Servlet,如果你想开发一个servlet程序,
    • 编写一个类,实现servlet接口
    • 把开发好的Java类部署到web服务器中

把实现了Servlet接口的Java程序,叫做Servlet

6.2、HelloServlet

servlet接口sun公司有两个默认的实现类:HTTPServlet

1、构建一个普通的Maven项目,删掉里面的scr子目录,以后我们的学习就在这个项目里建立moudel,这个空的工程就是Maven的主工程。(我的IDEA版本如果将scr文件删除了,创建了父工程后再建立子工程会直接卡死,我这里没有删除scr文件,其实不删也无影响)

2、创建maven父子目录时,先空后webapp,直接卡死,先webapp后空直接成功?(已解决)

3、关于maven父子工程的理解:

父项目会有:

	<moudle>
    	<moudle>servlet-01</moudle>
	</moudle>

子项目会有:

<parent>
	<artifactId>javaweb-02-servlet</artifactId>
    <groupId>com. kuang</groupId>
	<version>1.O-SNAPSHOT</version>
</parent>

父项目中的java子项目可以直接使用:

son extends father

4、Maven环境优化:

  1. 修改web.xml为最新版
  2. 将Maven的结构搭建完整

5、编写一个servlet程序

  1. 编写一个普通类
  2. 实现servlet接口,这里我们是直接继承HTTPServlet
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.println("Hello Servlet");
    }

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

6、编写Servlet的映射

​ 为什么需要映射:我们写的是java程序,我们要通过浏览器访问,而浏览器需要连接web服务器,所以我们需要在web服务

​ 中注册我们写的servlet,还需要给他一个浏览器可以访问的路径。

<!--注册servlet-->
    <servlet>
        <servlet-name>hello</servlet-name>
        <servlet-class>com.liu.servlet.HelloServlet</servlet-class>
    </servlet>

<!--servlet的请求路径-->
    <servlet-mapping>
        <servlet-name>hello</servlet-name>
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>

7、配置Tomcat

​ 注意项目配置的发布路径

8、启动测试

JavaWeb

6.3、Servlet运行原理

​ servlet是由web服务器调用,web服务器在收到浏览器的请求之后,会:

JavaWeb

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>/hello1</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>
    

    使用http://localhost:8080/srevlet_02_war/hello 后加的 1 2 3 4 都可以

  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>*.liu</url-pattern>
    </servlet-mapping>
    
    

    注意: * 前面不能加项目映射的路径

  6. 优先级问题

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

        <!--404-->
        <servlet>
            <servlet-name>error</servlet-name>
            <servlet-class>com.liu.servlet.ErrorServlet</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>error</servlet-name>
            <url-pattern>/*</url-pattern>
        </servlet-mapping>
    
    

6.5、ServletContext

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

1、共享数据

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

放置类:

public class HelloServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

        //this.getInitParameter();  初始化参数
        //this.getServletConfig();   servlet的配置
        //this.getServletContext(); servlet上下文
        ServletContext context = this.getServletContext();
        String username = "俊";
        context.setAttribute("username",username);//将一个数据保存在了ServletContext中,名字为:username 值为:username

    }
}

​ 读取类:

public class GetServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        ServletContext context = this.getServletContext();
        String username = (String) context.getAttribute("username");

        resp.setContentType("text/html");
        resp.setCharacterEncoding("utf-8");
        resp.getWriter().print("名字" +username);
    }

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

    }
}

配置文件:

<servlet>
    <servlet-name>hello</servlet-name>
    <servlet-class>com.liu.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.liu.servlet.GetServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>getc</servlet-name>
    <url-pattern>/getc</url-pattern>
</servlet-mapping>

2、获取初始化参数

 <!--配置一些web应用初始化参数-->
<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 context = this.getServletContext();
    String url = context.getInitParameter("url");
    resp.getWriter().print(url);

}

3、请求转发

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    System.out.println("进入了servletDemo04!!!");
    ServletContext context = this.getServletContext();
    context.getRequestDispatcher("/gp").forward(req,resp);//转发的请求路径,调用forward实现请求转发
}

JavaWeb

重定向:

JavaWeb

4、读取文件资源

properties

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

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

思路:需要一个文件流

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

<servlet>
    <servlet-name>ps</servlet-name>
    <servlet-class>com.liu.servlet.PropertiesServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>ps</servlet-name>
    <url-pattern>/ps</url-pattern>
</servlet-mapping>

username=root
password=root

JavaWeb

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. 下载文件
    1.要获取下载文件的路径

    2.下载的文件名是啥?

    3.设置想办法让浏览器能够支持下载我们需要的东西

    4.获取下载文件的输入流

    5.创建缓冲区

    6.获取OutputStream对象

    7.将FileOutputStream流写入到buffer缓冲区

    8.使用OutputStream将缓冲区中的数据输出到客户端!

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

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

<servlet>
    <servlet-name>filedown</servlet-name>
    <servlet-class>com.liu.servlet.FileServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>filedown</servlet-name>
    <url-pattern>/filedown</url-pattern>
</servlet-mapping>

3、验证码功能

验证码怎么来的?

  • 前端实现
  • 后端实现,需要用到java的图片类,生产一个图片
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(80, 20, BufferedImage.TYPE_INT_RGB);
        //得到图片
        Graphics g = image.getGraphics();//笔
        //设置图片的背景颜色
        g.setColor(Color.white);
        g.fillRect(0,0,80,20);
        //给图片写数据
        g.setColor(Color.blue);
        g.setFont(new Font(null,Font.BOLD,20));
        g.drawString(makeNum(),0,20);

        //告诉浏览器,这个请求用图片的方式打开
        resp.setContentType("image/jpeg");
        //网站存在缓存,不让浏览器缓存
        resp.setDateHeader("expires",-1);
        resp.setHeader("Cache-Control","no-cache");
        resp.setHeader("Pragma","no-cache");

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

    //生成随机数
    private String makeNum(){
        Random random = new Random();
        String num = random.nextInt(9999999) + "";
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i < 7 - 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);
    }
<servlet>
    <servlet-name>ImageServlet</servlet-name>
    <servlet-class>com.liu.servlet.ImageServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>ImageServlet</servlet-name>
    <url-pattern>/imag</url-pattern>
</servlet-mapping>

JavaWeb

JavaWeb

可以发现数字是3秒刷新一次

4、实现重定向

JavaWeb

一个web资源受到客户端请求后,它会告诉客户端去访问另外一个web资源,这个过程叫重定向。

常见场景:

  • 用户登录

    void sendRedirect(String var1) throws IOException;
    
  • 代码测试

    public class RedirectServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    
            resp.sendRedirect("./imag");//重定向
        }
    }
    

JavaWeb

JavaWeb

302:重定向,

Location:重定向的位置

面试题:请你聊聊重定向和转发有什么区别?

相同点:

  • 页面都会跳转

不同点:

  • 请求转发的时候,URL地址栏不会产生变化 307

  • 重定向的时候,URL地址栏会产生变化,直接跳转到你需要重定向的地址。302

    首先:写好你需要的东西

public class RequestTest extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("进入了这个请求");
        //处理请求
        String username = req.getParameter("username");
        String password = req.getParameter("password");
        System.out.println(username+ ":"+ password);

        //重定向的时候一定要注意路径问题。否则404
        resp.sendRedirect("./success.jsp");

    }

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

​ 然后,当你启动Tomcat时,会默认打开的首页

<html>
<body>
<h2>Hello World!</h2>
<%@page pageEncoding="UTF-8" %>
<%--这里提交的路径,需要寻找到项目的路径--%>
<%--${pageContext.request.contextPath} 代表当前的项目--%>
<form action="${pageContext.request.contextPath}/login" method="get">
    用户名:<input type="text" name="username"><br>
    密码:<input type="password" name="password"><br>
    <input type="submit">
</form>


</body>
</html>

​ 当你输入好信息后,提交会重定向到success.jsp

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

JavaWeb

JavaWeb

JavaWeb

6.7、HttpServletRequest

HttpServletRequest代表客户端的请求,用户通过Http协议访问服务器HTTp中所有的信息都会被封装到HttpServletRequest,

通过这个HttpServletRequest的方法,获得客户端的所有信息。

JavaWeb

JavaWeb

1、获取前端传递的参数

JavaWeb

2、请求转发

public class LoginServlet extends HttpServlet {
    @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("========================");
        //通过请求转发
        //这里的 / 代表当前的web应用
        req.getRequestDispatcher(req.getContextPath() + "/success.jsp").forward(req,resp);
    }

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

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

        <div style="text-align: center">
            <form action="${pageContext.request.contextPath}/login" method="post">
                用户名:<input type="text" name="username"><br>
                密码:<input type="password" name="password"><br>
                爱好:
                <input type="checkbox" name="hobbys" value="女孩">女孩
                <input type="checkbox" name="hobbys" value="代码">代码
                <input type="checkbox" name="hobbys" value="电影">电影
                <input type="checkbox" name="hobbys" value="唱歌">唱歌
                <br>
                <input type="submit">
            </form>
        </div>

    </body>
</html>

7、项目创建小结

  1. 首先,创建一个父子工程,由于我的IDEA版本是最新的,不可以删除scr文件,否则会卡死

  2. 在父工程的pom文件设置好需要的依赖,子工程可以直接继承父工程的依赖

  3. 再就是创建子工程所出现的问题,没有标签,大概率是IDEA版本太新,系统默认没有parent标签也可以,

    但是在子工程继承父工程的jar包时无法顺利继承,这就需要手动在子工程的pom文件中写标签

    <parent>
        <artifactId>Javaweb-02-maven</artifactId>
        <groupId>org.example</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    

    artifactId:继承的父工程的名称

    groupId:创建项目是的分组,默认为org.example,一般都自己重命名,方便管理

    version:版本。默认,一般讲前两个标签打出来后这个标签是自动生成

  4. 修改子工程下scr-main-webapp-WEB-INF-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"
            metadata-complete="true">
    </web-app>
    
  5. 在main文件下添加java文件夹和resources文件夹,养成规范

JavaWeb

  1. 每写一个java文件,如果将其输出到浏览器客户端,需要在web-xml文件中添加对应自己的

    <servlet>
        <servlet-name>filedown</servlet-name>
        <servlet-class>com.liu.servlet.FileServlet</servlet-class>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>filedown</servlet-name>
        <url-pattern>/filedown</url-pattern>
    </servlet-mapping>
    

    :无特殊含义,一般设置为自己的class文件名或者契合文件主题的名字

    :需要执行的class文件路径

    :对应上面的servlet-name

    :浏览器访问路径

  2. 常用到的两个依赖包

    servlet
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>4.0.1</version>
    </dependency>
    
    jsp
    <dependency>
        <groupId>javax.servlet.jsp</groupId>
        <artifactId>jsp-api</artifactId>
        <version>2.1</version>
    </dependency>
    
    

8、cookie、session

8.1、会话

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

**有状态会话: ** 简单来说就是,假设你去过一个地方,下次再来的时候,就会有记录你曾经来过

你能怎么证明你是太工的学生?
你 太工

1.交了学费的发票 太工给你发票

⒉.学生证 太工标记你来过了

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

客户端 服务端

1.服务端给客户端一个信件,客户端下次访问服务端带上信件就可以了; cookie

2.服务器登记你来过了,下次你来的时候我来匹配你;session

8.2、保存会话的两种技术

cookie

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

session

  • 服务器技术,利用这个技术,我们可以把信息或者数据放在session中!

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

8.3、Cookie

JavaWeb

  1. 从请求中拿到cookie信息
  2. 服务器响应给客户端cookie
public class CookieDemo01 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //服务器,告诉你,你来的时间,把这个时间封装成一个信件,下次你来的时候带上信件,就可以识别你来过

        //解决中文乱码
        resp.setHeader("Content-Type","text/html");
        resp.setCharacterEncoding("utf-8");
        req.setCharacterEncoding("utf-8");


        PrintWriter out = resp.getWriter();

        //cookie,服务端从客户端获取,
        Cookie[] cookies = req.getCookies();

        //判断cookie是否存在
        if(cookies!=null){
            ///如果存在
            out.write("你上一次访问的时间是:");
            for (int i = 0; i < cookies.length; i++) {
                Cookie cookie = cookies[i];
                if(cookie.getName().equals("LastLoginTime")){
                    //获取cookie的值
                    long LastLoginTime = Long.parseLong(cookie.getValue());
                    Date date = new Date(LastLoginTime);
                    out.write(date.toLocaleString());
                }

            }
        }else {
            out.write("这是你第一次访问");
        }

        //服务端给客户端响应一个cookie
        Cookie cookie = new Cookie("LastLoginTime",System.currentTimeMillis() + "");
        resp.addCookie(cookie);
    }

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

步骤:1、从客户端获取cookie

​ 2、判断cookie是否有值,如果有,将其打印

​ 3、如果没有,将新的cookie赋值

​ 4、响应给客户端一个cookie

cookie会保存在本地文件

一个网站cookie是否存在上线!

  • 一个cookie只能保存一个信息

  • 一个web站点可以给浏览器发送多个cookie ,最多存放20个cookie

  • Cookie大小有限制4kb

  • 300个cookie浏览器上限

删除cookie:

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

编码解码:

URLEncoder.encode("刘","utf-8")
URLDecoder.decoder(cookie.getValue(),"utf-8")

8.4、Session(重点)

JavaWeb

什么是session:

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

Session和Cookie区别:

  • cookie是把用户的数据写给用户的浏览器,浏览器保存(最多7个)
  • Session是把用户的数据写到用户独占的session中,服务端保存(保存重要的信息,减少服务器资源的浪费)
  • session对象由服务器创建

使用场景:

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

首先,获取session,判断是否存在

public class SessionDemo01 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //解决乱码问题
        req.setCharacterEncoding("utf-8");
        resp.setContentType("text/html;charset=utf-8");
        resp.setCharacterEncoding("utf-8");

        //得到session
        HttpSession session = req.getSession();

        //给session存东西
        session.setAttribute("name",new Person("俊爷",1));

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

        //判断session是不是新创建
        if (session.isNew()){
            resp.getWriter().write("session创建成功,ID为:" + sessionId);
        }else{
            resp.getWriter().write("session已经存在了,ID为:" + sessionId);
        }
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

然后,获取这个session里面存的值

public class SessionDemo02 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //解决乱码问题
        req.setCharacterEncoding("utf-8");
        resp.setContentType("text/html;charset=utf-8");
        resp.setCharacterEncoding("utf-8");

        //得到session
        HttpSession session = req.getSession();

        //给session存东西
        Person person = (Person) session.getAttribute("name");

        System.out.println(person.toString());
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

使用完之后可以消除并且注销session,但是会马上产生新的session

public class SessionDemo03 extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        HttpSession session = req.getSession();
        session.removeAttribute("name");
        //手动注销
        session.invalidate();
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

web.xml自行配置servlet,此处就不一一列举。

默认配置session关闭时间,会话自动过期

<!--设置session默认时间-->
<session-config>
    <!--1分钟后失效-->
    <session-timeout>1</session-timeout>
</session-config>

9、JSP

9.1、什么是JSP

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

最大特点:

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

9.2、JSP原理

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

JSP最终也会被转化成为Java类

JSP本质是一个servlet

//初始化
pub1ic void _jspInit() {
}

//销毁
public void _jspDestroy() {
}

//sPservice
public void _jspservice(.HttpServletRequest request,HttpservletResponse response)
  1. 判断请求

  2. 内置一些对象

    final javax.servlet.jsp.Pagecontext pagecontext;		//页面上下文
    javax.servlet.http.Httpsession session = nu11; 			//session
    final javax.servlet.servletcontext application;			//app1icationcontext
    final javax.servlet.servletconfig config;				//config
    javax.servlet.jsp. spwriter out = nu11;					// out
    final java.1ang.object page = this;						//page:当前
    HttpservletRequest request								//请求
    Httpserv1etResponse response							//响应
    
  3. 输出页面前增加的代码

    response. setcontentType("text/htm1");				//设置响应的页面类型
    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;
    
  4. 以上的这些对象我们可以直接在JSP页面中直接使用!

    JavaWeb

    <% String name = "junye"%>
    name:<%=name%>    //将名字取出来
    

    在JSP页面中,只要是java代码就会原封不动的输出

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

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

    这样的格式会输出到前端

9.3、JSP基础语法

任何语言都有自己的语法,java中有,JSP作为java技术的一种应用,它拥有一些自己扩充的语法,java所有语法都支持

JSP表达式

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

JSP脚本片段

<%
int sum = 0;
for (int i = 0; i < 10; i++) {
    sum += i;
}
out.println("<h1>sum=" + sum + "</h1>");
%>

JSP声明

<%!
    static{
    System.out.println("Loading Servlet!");
}
private int glob = 0;

public void liu(){
    System.out.println("进入了liu这个方法!");
}
%>

Jsp声明:会被编译到jsp生成的java类当中,其他的,就会被生成到_jspService方法中

在JSP中嵌入java代码即可

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

9.4、JSP的指令

会将两个页面合二为一
<%@include file="" %>		包含的文件
<jsp:include file="/common/Header.jsp"/>
<h1>网页主体</h1>
<jsp:include file="/common/Footer.jsp"/>

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

9.5、9大内置对象

  • PageContext 存东西
  • Request 存东西
  • Response
  • Session 存东西
  • Application【ServletContext】 存东西
  • config【ServletConfig】
  • out
  • page 几乎不用
  • exception
<%
	pageContext.setAttribute("name1","秦疆1号");//保存的数据只在一个页面中有效
	request.setAttribute("name2","秦疆2号");//保存的数据只在一次请求中有效,请求转发会携带这个数据
	session.setAttribute("name3","秦疆3号");//保存的数据只在一次会话中有效,从打开浏览器到关闭浏览器	
	application.setAttribute("name4","秦疆4号");//保存的数据只在服务器中有效,从打开服务器到关闭服务器
%>
<%--脚本片段中的代码,会被原封不动生成到.JSP.java要求:这里面的代码:必须保证Javai语法的正确性
--%>
<%
 	//从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>

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

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

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

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

需要用到得新的包

<!-- JSTL表达式的依赖 -->
<dependency>
    <groupId>javax.servlet.jsp.jstl</groupId>
    <artifactId>jstl-api</artifactId>
    <version>1.2</version>
</dependency>

<!-- standard标签库 -->
<dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
</dependency>

EL表达式:$

  • 获取数据

  • 执行运算

  • 获取web开发的常用对象

JSP标签

<%--jsp:include--%>
<%-- http://1oca7host:8080/jsptag.jsp?name=kuangshen&age=12--%>
<jsp:forward page="/jsptag2.jsp">
	<jsp:param name="name" value="kuangshen "></jsp:param>
    <jsp:param name="age" value="12"></jsp:param>
</jsp:forward>

JSTL表达式

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

格式化标签

SQL标签

XML标签

核心标签(掌握部分)

<%--引入JSTL核心标签库,我们才能使用JSTL标签core--%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

JavaWeb

JSTL标签库使用步骤:

  • 引入对应的taglib
  • 使用其中的方法
  • 在Tomcat中也要引入JSTL的包,

if

<h1>
    if判断
</h1>
<hr>

<form action="coreif.jsp" method="get">
<%-- EL表达式获取表单中的数据${param.参数名} --%>
	<input type="text" name="username" value="${param.username}">
    <input type="submit" value="登录">
</form>
    <%--判断如果提交的用户名是管理员,则登录成功--%>
    <c:if test="${param.username== 'admin' }" var="isAdmin">
    	<c :out value="管理员欢迎您!"/>
    </c:if>
    <%--自闭合标签--%>
    <c :out value="${isAdmin}" />


forEach

<%
	ArrayList<String> people = new ArrayList<>();people.add(e,"张三");
	people.add(1,"李四");
	people.add(2,"王五");
	people.add( 3,"赵六");
	people.add(4,"田六");
	request.setAttribute( name: "1ist" ,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="1" >
	<c:out value="$ipeople}"/>
    	<br>
</c:forEach>
</ body>
</ htm1>

10、JavaBean

实体类

JavaBean有特定的写法:

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

一般用来和数据库的子段做映射 :ORM

ORM:对象关系映射

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

实体类一般都是和数据库中表一一对应

People表

id name age address
1 戒爱1号 3 山西
2 戒爱2号 6 山西
3 戒爱3号 9 山西
class People{
    private int id;
    private String name;
    private int age;
    private String address;
}
class A{
    new People(1,"戒爱",3,"山西");
}
<%
    //People people = new PeopLe( );
    //peopLe.setAddress( );
    //people.setId( );
    //people. setAge( );people.setName( );
%>
<jsp:useBean />
<jsp:setProperty name="people" property="id" value="1" />
<jsp:setProperty name="people" property="name" value="戒爱"/>
<jsp:setProperty name="people" property="age" value="3"/>
<jsp:setProperty name="people" property="address" value="山西"/>

<%-- <%=people.getAddress( )%> --%>

姓名: <jsp:getProperty name="people" property="name" /><br>
id: <jsp:getProperty name="people" property="id" /><br>
年龄: <jsp:getProperty name="people" property="age" / ><br>
地址: <jsp:getProperty name="people" property="address" /><br>

11、MVC三层架构

什么是MVC: model view Controller 模型视图控制器

11.1、早些年的架构

JavaWeb

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

servlet -- > CRUD  ---> 数据库
弊端:程序十分臃肿,不易于维护   
servlet的代码中:处理请求,响应,视图跳转,处理JDBC,处理业务代码处理逻辑代码

架构:没有什么是加一层解决不了的!
程序员调用  
JDBC
    
MYSQL

11.2、三层架构

JavaWeb

Model

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

View

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

Controller

  • 接收用户的请求:(req:请求参数、Session信息)

  • 交给业务层处理对应的代码

  • 控制视图的跳转

    登录---->接收用户的登录请求 ---- >处理用户的请求(获取用户登录的参数,username,password)----->
    交给业务层处理登录业务(判断用户名密码是否正确:事务) ---- > Dao层查询用户名和密码是否正确--->数据库
    

12、Filter(重点)

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

  • 处理中文乱码

  • 登录验证

JavaWeb

Filter开发步骤:

  1. 导包

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

    额外添加需要连接数据库的包

  2. 编写过滤器

    1. 导包不要错,必须是javax.servlet的包

    2. 实现Filter接口,重写对应的方法

      public class CharacterEncodingFilter implements Filter {
          @Override
          public void init(FilterConfig filterConfig) throws ServletException {
              System.out.println("CharacterEncodingFilter初始化");
          }
      
          @Override
          public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
              servletRequest.setCharacterEncoding("utf-8");
              servletResponse.setCharacterEncoding("utf-8");
              servletResponse.setContentType("text/html;charset=utf-8");
              System.out.println("characterEncoding执行前。。。。");
              filterChain.doFilter(servletRequest,servletResponse);//让我们的请求继续走,如果不写,我们的程序到这儿就停止了
              System.out.println("characterEncoding执行后。。。");
          }
      
          //销毁::web服务器关闭的时候,过滤器会销毁
          @Override
          public void destroy() {
              System.out.println("CharacterEncodingFilter销毁");
          }
      }
      
      
    3. 在web.xml文件中配置过滤器

      <filter>
          <filter-name>CharacterEncodingFilter</filter-name>
          <filter-class>com.liu.filter.CharacterEncodingFilter</filter-class>
      </filter>
      <filter-mapping>
          <filter-name>CharacterEncodingFilter</filter-name>
          <!--只要是servlet下的任何请求都会过滤-->
          <url-pattern>/Servlet/*</url-pattern>
      </filter-mapping>
      

在服务器关闭的时候,过滤器才会销毁。

13、监听器

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

  1. 编写一个监听器

    实现监听器的接口...

    //统计网站在线人数:统计session
    public class OnlineCountListener implements HttpSessionListener {
        //创建session监听
        @Override
        public void sessionCreated(HttpSessionEvent se) {
            ServletContext servletContext = se.getSession().getServletContext();
            Integer onlineCount = (Integer) servletContext.getAttribute("OnlineCount");
            if (onlineCount==null){
                onlineCount = new Integer(1);
            }else{
                int count = onlineCount.intValue();
                onlineCount = new Integer(count+1);
            }
            servletContext.setAttribute("OnlineCount",onlineCount);
        }
    
        //销毁session监听
        @Override
        public void sessionDestroyed(HttpSessionEvent se) {
    
            ServletContext servletContext = se.getSession().getServletContext();
            Integer onlineCount = (Integer) servletContext.getAttribute("OnlineCount");
            if (onlineCount==null){
                onlineCount = new Integer(0);
            }else{
                int count = onlineCount.intValue();
                onlineCount = new Integer(count-1);
            }
            servletContext.setAttribute("OnlineCount",onlineCount);
        }
    }
    

  2. web.xml中注册监听器

    注册监听器
    <listener>
        <listener-class>com.liu.listener.OnlineCountListener</listener-class>
    </listener>
    
  3. 看情况是否使用

14、过滤器、监听器常见应用

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

public class (TestPanel i
              public static void main(String[]args) {
                  Frame frame = new Frame("中秋节快乐");1/新建一个窗体Panel panel = new Panel(nul1); //面板
                  frame.setLayout(null);//设置窗体的布局
                  frame.setBounds ( 300, 300, 500, 5e0);
                  frame.setBackground(new color(0,0,255));//设置背景颜色
                  panel.setBounds (50,5e,300, 3ee);
        panel.setBackground( new Color(0,255,0));//设置背景颜色frame.add(panel);
    	frame.setvisible(true) ;/监听事件,监听关闭事件
         frame .addwindowListener( new windowAdapter();
                                               @override
               public void windowclosing(windowEvent e) {
         super.windowClosing(e);
                         }
                });
              }

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

1、当用户启动服务器后,自动进入index.jsp

2、然后自己手动跳转到登录页面

<h1>登录</h1>
<form action="/Servlet/login" method="post">
    <input type="text" name="username">
    <input type="submit">
</form>

​ 登录的代码

public class LoginServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //获取前端请求的参数
        String username = req.getParameter("username");
        if(username.equals("admin")){//登录成功
            req.getSession().setAttribute("USER_SESSION",req.getSession().getId());
            resp.sendRedirect("/sys/success.jsp");
        }else{//登录失败
            resp.sendRedirect("/error.jsp");
        }
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doGet(req, resp);
    }
}

​ xml配置

<servlet>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>com.liu.servlet.LoginServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>/Servlet/login</url-pattern>
</servlet-mapping>

登录成功

<%  
这个是在登录成功这个页面直接进行判断,如果USER_SESSION为空,直接返回登录页面,这个是在显示页面之前就会进行的步骤,所以
不会显示下面的‘主页’
--<%
    Object userSession = request.getSession().getAttribute("USER_SESSION");
    if (userSession==null){
        response.sendRedirect("/Login.jsp");
    }
%>
--%>
<h1>主页</h1>

3、登录失败,注销的部分

<h1>错误</h1>
<h3>没有权限,用户名错误</h3>
<a href="/Login.jsp">返回登录页面</a>
public class LoginOutServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        Object user_session = req.getSession().getAttribute("USER_SESSION");
        if (user_session!=null){
            req.getSession().removeAttribute("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);
    }
}
<servlet>
    <servlet-name>LoginOutServlet</servlet-name>
    <servlet-class>com.liu.servlet.LoginOutServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>LoginOutServlet</servlet-name>
    <url-pattern>/Servlet/loginout</url-pattern>
</servlet-mapping>

4、添加过滤器,在登录页面时,如果session的ID为空,直接跳转成功页面直接进行重定向回到登录页面,也就是说无法直接到达成功的页面

public class SysFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        Filter.super.init(filterConfig);
    }

    @Override
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        HttpServletRequest servletRequest1 = (HttpServletRequest) servletRequest;
        HttpServletResponse servletResponse1 = (HttpServletResponse) servletResponse;
        if (servletRequest1.getSession().getAttribute("USER_SESSION")==null) {
            servletResponse1.sendRedirect("/Login.jsp");
        }

        filterChain.doFilter(servletRequest1,servletResponse1);
    }
    @Override
    public void destroy() {
        Filter.super.destroy();
    }
}
<filter>
    <filter-name>SysFilter</filter-name>
    <filter-class>com.liu.filter.SysFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>SysFilter</filter-name>
    <url-pattern>/sys/*</url-pattern>
</filter-mapping>

Junit测试

依赖

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.13</version>
</dependency>

简单使用

@Test注解只在方法上有效,加了这个注解的方法,可以直接测试方法