web开发:
web,网页的意思 www.baidu.com
静态web
动态web
在Java中,动态web资源开发的技术统称为Javaweb。
可以提供浏览器访问的程序;
web应用程序编写完毕后,若想提供给外界访问:需要一个服务器来统一管理
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-kc75sMmD-1620654430904)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405162903087.png)]
静态web存在的缺点
Web页面无法动态更新,所有用户看到的都是同一个页面
无法和数据库交互 (数据无法持久化,用户无法交互)
页面会动态展示:“Web的页面展示的效果因人而异”
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-tW7ym5iR-1620654430911)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405164229485.png)]
缺点
优点
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-iMTON7aA-1620654430913)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405164716344.png)]
ASP
<h1> <h1> <h1> <% java代码 %> </h1> </h1> </h1>
PHP
JSP / Servlet
B/S:浏览和服务器
C/S:客户端和服务器
IIS
Tomcat
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-xOZSXvWX-1620654430916)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405171207153.png)]
Tomcat是Apache 软件基金会(Apache Software Foundation)的Jakarta 项目中的一个核心项目,最新的Servlet 和JSP 规范总是能在Tomcat 中得到体现,因为Tomcat 技术先进、性能稳定,而且免费,因而深受Java 爱好者的喜爱并得到了部分软件开发商的认可,成为目前比较流行的Web 应用服务器。
Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。对于一个初学者来说,它是最佳选择。
诀窍是,当配置正确时,Apache 为HTML页面服务,而Tomcat 实际上运行JSP 页面和Servlet。目前Tomcat最新版本为9.0.37**。**
…
工作3~5年之后,可以尝试手写Tomcat服务器;
tomcat官网:http://tomcat.apache.org/
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-UtL7Nkjp-1620654430922)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405172516405.png)]
文件夹作用:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-V1LxeW2o-1620654430923)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405173127485.png)]
启动,关闭Tomcat
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Dt2FhhY5-1620654430924)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405180817770.png)]
访问测试:http://localhost:8080/
可能遇到的问题:
Java环境变量没有配置
闪退问题:需要配置兼容性,需要手动配置JRE_HOME 这个环境变量
乱码问题:配置文件中设置 (最好不改)
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5t1ZSHxk-1620654430925)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405182452824.png)]
可以配置启动的端口号:
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
可以配置主机的名称:
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
高难度面试题
请你谈谈网站是如何进行访问的?!
输入一个域名;回车。
检查本机的 C:\Windows\System32\drivers\etc\hosts配置 文件下有没有这个域名映射;
有:直接返回对应的 ip 地址 ,这个地址中,有要访问的web程序,可以直接访问
127.0.0.1 localhost
没有:去DNS服务器找,找到就返回,找不到就返回找不到
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FtW2AzRF-1620654430926)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405211656986.png)]
--webapps : Tomcat服务器的web目录 -ROOT -Kaneki :网站的目录名 -WEB-INF -classes : java程序 -1ib : web应用所依赖的jar包 -web.xml : 网站配置文件 - index.html 默认的首页 - static -CSS -sty1e.css -js -img -...
HTTP协议: 面试
Maven: 构建工具
Servlet入门
超文本传输协议(Hypertext Transfer Protocol,HTTP)
是一个简单的请求-响应协议,它通常运行在TCP之上。
https:安全的
http1.0
http2.0
百度:
Request URL:https: // www.baidu.com/ 请求地址 Request Method:GET // get方法/post方法 Status Code:200 0K // 状态码: 200 Remote(远程) Address:14. 215.177.39: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
Accept: // 告诉了浏览器,它所支持的数据类型 Accept-Encoding:// 支持哪种编码格式 GBK,UTF-8,GB2312,··· Accept-Language:// 告诉浏览器,它的语音环境 Cache-Control: // 缓存控制 Connection: // 告诉浏览器,请求完成是断开还是保持连接 HOST: // 主机
百度:
Cache-Control:private //缓存控制 Connection:Keep-Alive //连接 Content-Encoding:gzip //编码 Content-Type:text/html //类型
Accept: // 告诉了浏览器,它所支持的数据类型 Accept-Encoding:// 支持哪种编码格式 GBK,UTF-8,GB2312,··· Accept-Language:// 告诉浏览器,它的语音环境 Cache-Control: // 缓存控制 Connection: // 告诉浏览器,请求完成是断开还是保持连接 HOST: // 主机 Refresh: // 告诉客户端,多久刷新一次 Location: //让网页重新定位
3xx:请求 重定向 (重新到给的新位置去)
200:请求响应成功 200
4xx:找不到 (资源不存在) 404
5xx:服务器代码错误 500 502:网关错误 互联网 - 3网
当你的浏览器中地址栏输入地址并回车的一瞬间到页面能够展示,中间的过程是怎样的?!
我为什么要学习这个技术?
在Javaweb开发中,需要使用大量的jar包, 我们手动去导入;
如何能够让一个东西自动帮我导入和配置这个jar包;
由此,Maven诞生了!
目前用来方便导入jar包的工具!
Maven的核心思想:约定大于配置
Maven会规定好你该如何去编写Java代码;
官网:https://maven.apache.org/ apache 阿帕奇
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-KXrnEJyt-1620654430929)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405231227959.png)]
小雨点友情建议:电脑上的所有环境都放在一个文件夹下,方便管理;
在系统环境变量中
环境配置:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-aJypmCR9-1620654430930)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210405235305723.png)]
测试Maven是否安装成功,必须保证环境配置完毕!
镜像:mirrors
国内建议使用阿里云的镜像
小雨点
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror>
在本地的仓库,远程仓库; maven下新建maven-repo文件
**建立一个本地仓库:**localRepository
<localRepository>D:\Environment\apache-maven-3.6.1\maven-repo</localRepository>
指定 JDK1.8 版本
<profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile>
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-mZXsQq8r-1620654430936)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406160745177.png)]
6.到这里,Maven在IDEA中的配置和使用就完成了!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-j22BbAv0-1620654430937)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406161314250.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8OXbBXmc-1620654430940)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406131356707.png)]
这个只有在web应用下才会有
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DXOuKpK0-1620654430941)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406161508490.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-2bWWYBBC-1620654430942)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406161824399.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-cufE1ebQ-1620654430943)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406162712984.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-UWeYmQ7z-1620654430944)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406163302170.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Qq86bfww-1620654430945)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406163410607.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-tMc2x4Wf-1620654430946)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406163837097.png)]
解决警告问题:
为什么会有这个问题:我们访问一个网站,需要在指定一个文件夹名字;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-iG7oy6El-1620654430950)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406164512055.png)][外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-BMSTAw58-1620654430951)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406165347078.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-9vEL0tge-1620654430952)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406165020627.png)]
pom.xml
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-nXmXbWyp-1620654430953)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406165515188.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.kaneki</groupId> <artifactId>maven01</artifactId> <version>1.0-SNAPSHOT</version> <!-- Package:项目打包方式 jar:java应用 war:JavaWeb应用 --> <packaging>war</packaging> <name>maven01 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>maven01</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>
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5jJcbqbS-1620654430954)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406171353360.png)]
maven由于 约点大于配置,之后可能遇到写的配置文件,无法被导出或者生效的问题
解决方案:
<!-- 在build中配置resources,来防止资源导出失败问题 --> <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> <includes > <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>false</filtering> </resource> </resources> </build>
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-by39srD2-1620654430955)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406172729980.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-89te6l5i-1620654430956)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406172842912.png)]
1.Maven 3.6.3 (版本好一点)
2.Tomcat闪退
3.IDEA中每次都要重复配置Maven
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-yF64NErH-1620654430961)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406211051801.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Havik9vO-1620654430962)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406211214932.png)]
4.Maven项目中Tomcat无法配置
5.Maven默认web项目中的web.xml版本问题
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ccVCOYZw-1620654430963)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406212504917.png)]
6.替换为webapp4.0版本和Tomcat一致
<?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>
7.Maven仓库的使用
地址:https://mvnrepository.com/
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-F4UpUOcd-1620654430964)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406231605332.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-GvhepNan-1620654430965)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406231739933.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-p6CG1fGo-1620654430966)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406232106622.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-QFAMRYj1-1620654430967)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406232238783.png)]
8.web服务器
发送请求通过WebServer Plugin一个插件
静态:走WebServer返回一个页面
动态:先走JSP请求映射,交给Tomcat这个容器去处理
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-KlRVV3Sb-1620654430968)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210406234622475.png)]
Tomcat容器会在 web.xml 中找到 kaneki 映射 , 这个映射对应一个 servlet-name
servlet-name 有个对应的注册到servlet,servlet注册了一个 servlet-class(类)
找到这个类, 这个类继承了 HttpServlet 代表有了 Servlet 的功能
<?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.xml中是配置web的核心应用--> <!-- 注册Servlet --> <servlet> <servlet-name>helloServlet</servlet-name> <servlet-class>com.kaneki.servlet.HelloServlet</servlet-class> </servlet> <!-- 一个Servlet对应一个Mopping:映射 --> <servlet-mapping> <servlet-name>helloServlet</servlet-name> <!-- 请求路径 --> <url-pattern>/kaneki</url-pattern> </servlet-mapping> </web-app>
浏览器请求:默认Get 表单请求:Post
package com.kaneki.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 { @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { //响应的类型:html response.setContentType("text/html"); //设置编码类型 response.setCharacterEncoding("utf-8"); //获取响应的输出流 PrintWriter out = response.getWriter(); out.println("<html>"); out.println("<head>"); out.println("<title>Hello World!</title>"); out.println("</head>"); out.println("<body>"); out.println("<h1>你好</h1>"); out.println("</body>"); out.println("</html>"); } }
JavaWeb三大组件:Servlet程序、Filter过滤器、Listener监听器
Servlet是运行在服务器上的一个java小程序,它可以接收客户端发送过来的请求,并响应数据给客户端。
把实现了Servlet接口的Java程序叫做:Servlet
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VI6WjpoR-1620654430970)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210408174404927.png)]
执行Servlet构造器方法
执行init初始化方法
第一、二步,是在第一次访问的时候创建Servlet程序会调用
执行servlet方法
第三步,每次访问都会调用
执行destroy销毁方法
第四步,在web工程停止的时候调用
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-e9r0bWWb-1620654430971)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210410151133378.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-xWMxJRdh-1620654430973)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210410151246002.png)]
1.构建一个普通的Maven项目,删掉src目录,在这个项目建立Moudel;这个空的工程就是Maven的主工程
2.关于Maven父子工程的理解:
父工程会有
<modules> <module>servlet</module> </modules>
子工程会有
<parent> <artifactId>JavaWeb</artifactId> <groupId>com.kaneki</groupId> <version>1.0-SNAPSHOT</version> </parent>
3.Maven环境优化
修改web.xml为最新的;
将maven的结构搭建完整;
<?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"> </web-app>
4.通过继承HttpServlet实现Servlet程序
public class HelloServlet extends HttpServlet { /** * doGet()在get请求的时候调用 * @param req 参数 * @param resp * @throws ServletException 抛出异常 * @throws IOException */ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { } //由于get或者post自身请求实现不同的方式,可以相互调用,业务逻辑都一样; @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
5.编写Servlet的映射
<!-- 注册Servlet --> <servlet> <servlet-name>HelloServlet</servlet-name> <servlet-class>com.kaneki.HelloServlet</servlet-class> </servlet> <!-- Servlet的请求路径 --> <servlet-mapping> <servlet-name>HelloServlet</servlet-name> <url-pattern>/hello</url-pattern> </servlet-mapping>
6.配置Tomcat
7.启动测试;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-aD4oIteO-1620654430974)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210410152421294.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pFyMtsU3-1620654430975)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210410144958607.png)]
web容器在启动的时候,他会为每个web程序都创建一个对应的ServletContext的对象,代表当前的web应用;
在这个Servlet中保存的数据,可以在另外一个Servlet中拿到:
pub1ic c1ass Helloservlet extends Httpservlet { @override protected void doGet (HttpServletRequest req,HttpServletResponse resp) throws.Serv1etException, IOException { //this.getInitperameter() 初始化参数 //this.getServletconfig() Servlet配置 //this.getservletContext() Servlet上下文 Serv1etContext context = this.getServletContext(); string username = "秦疆"; //数据 context. setAttribute ("username",username); //将一个数据保存在了ServletContext中,名字为:username , 值:username } }
pub1ic Class GetServlet extends Httpservlet { @Override pratected veid doGet (HttpservletRequest req,HttpservietResponseresp) throws ServletException,IoException { ServletContext context = this. getServletContext(); string username = (String) context. getAttribute("usernam"); resp.setContentType ("text/htm1"); resp,setCharacterEncoding("utf-8"); resp.getwriter(). print("名字"+username); } @override protected void doPost (HttpServletRequest req,HttpServletResponseresp) throws ServletException, IOException { doGet(req,resp); } }
测试访问结果;
<!-- 配置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); }
@Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ServletContext context = this.getServletContext(); //RequestDispatcher requestDispatcher = context. getRequestDispatcher("/gp"); //转发的请求路径 //requestDispatcher.forward(req, resp); // 调forward实现请求转发 context.getRequestDispatcher("/gp").forward(req,resp); }
Properties
发现:都被打包到了同一路径下:classes 类路径:classpath
思路:需要一个文件流
username = root password = 123456
@Override protected void doGet (HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { InputStream is = this.getServletContext().getResourceAsStream("/WEB-INF/classes/w.properties"); Properties prop = new Properties(); prop.1oad(is); String user = prop.getProperty("username"); String pass = prop.getProperty("password"); resp.getWriter().print(user+":"+pwd);
web服务器接收到客户端的http请求,针对这个请求,分别创建一个代表请求的HttpServletRequest对象,代表响应的一个HttpServletResponse;
负责向浏览器发送数据的方法
Servletoutputstream getoutputstream() throws IOException; PrintWriter getwriter()throws IOException;
负责向浏览器发送响应头的方法
//响应状态码 int SC_OK = 200; //请求响应成功 ok int SC_NOT_FOUND = 404; //找不到 (资源不存在) int SC_INTERNAL_SERVER_ERROR = 500; //服务器代码错误 int SC_BAD_GATEWAY = 502; //网关错误 互联网 - 3网 int SC_CONTINUE = 100; int SC_SWITCHING_PROTOCOLS = 101; 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_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_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_NOT_IMPLEMENTED = 501; int SC_SERVICE_UNAVAILABLE = 503; int SC_GATEWAY_TIMEOUT = 504; int SC_HTTP_VERSION_NOT_SUPPORTED = 505;
1.向浏览器输出消息
2.下载文件
@Override protected void doGet (HttpServ1etRequest req, HttpServletResponse resp) throws ServletException, IOException { // 1.要获取下载文件的路径 String realPath = "D:\\vscode\\永远十八岁\\图片\\背景.jpg"; System. out. print1n("下载文件的路径: "+realPath); //2.下载的文件名是啥? String fileName = realPath.substring(realPath.lastIndex0f("\\") + 1); // 3.设置想办法让浏览器能够支持(Content-Disposition) 下载我们需要的东西,中文文件名URLEncoder.encode编码, 否则有可能乱码 resp.setHeader("Content-Disposition","attachment;filename="+URLEncoder.encode(fi1eName,"UTF-8")); // 4.获取下载文件的输入流 FileInputStream in = new FileInputStream(realPath); // 5.创建缓冲区 int 1en = 0; byte[] buffer = new byte[1024]; //6.获取OutputStream对象 ServletOutputStream out = resp.getOutputStream(); // 7.将FiLeOutputStream流 写入到buffer缓冲区,使用outputStream将缓冲区中的数据输出到客户端! while ( (len=in. read(buffer))>0){ out.write(buffer,0,len); in.close(); out.close(); }
@Override protected void doGet (HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //如何让浏览器3秒自动刷新一次; resp.setHeader("refresh","3"); //在内存中创建一个图片 BufferedImage image = new BufferedImage(80, 20 ,BufferedImage.TYPE_INT_RGB); //得到图片 Graphics2D g = (Graphics2D)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) ; }
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-9Q6ZLfNB-1620654430976)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210415162435753.png)]
一个web资源(B)收到客户端(A)的请求后,B会通知客户端A去访问另外一个web资源C,这个过程就叫重定向;
常用场景:
void sendRedirect(String var1) throws IOException;
测试:
@override protected void doGet (HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException { /* resp.setHeader("Location","/r/img"); resp.setStatus(302); */ resp.sendRedirect("/r/img"); //重定向 }
请你聊聊转发和重定向的区别?!
相同点:
不同点:
登录页面:
<html> <body> <h2>Hello World!</h2> <%--这里提交的路径,需要寻找到项目的路径--%> <%--${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>
@Override protected void doGet (HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //处理请求 String username = req.getParameter("username"); String password = req . getParameter("password"); System.out.println(username+":"+password); //重定向时候一定要注意,路径问题,否则404; resp. sendRedirect("/success.jsp"); }
<%@ page contentType="text/html; charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> <h1>Success</h1> </body> </html>
HttpServletRequest代表客户端的请求,用户通过Http协议访问服务器,Http请求中的所有信息会被封装得到HttpServletRequest,通过这个HttpServletRequest得到方法,获得客户端的所有信息;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-4MWLZwHa-1620654430979)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210415173408934.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-N9FryIyn-1620654430980)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210415173432815.png)]
获取前端传递的参数,请求转发
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-7bVBWaip-1620654430982)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210415173602067.png)]
@override protected void doGet (HttpServ1etRequest req,HttpServ1etResponse 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("hobbies"); System. out. print1n("========================="); //后台接收中文乱码问题 System.out.println(username); System.out.println (password); System.out.println(Arrays.tostring(hobbies)); System.out.println("========================="); System.out.println(req. getContextPath()); //通过请求转发 //这里的/代表当前的web应用 req.getRequestDispatcher("/success.jsp").forward(req, resp); }
请你聊聊重定向和转发的区别?!
相同点:
不同点:
1.存储位置不同:cookie是保存在客户端,session是保存在服务器端;
2.存储数据量的大小不同:cookie存储是有限的,不超过4LB,session是无限制的;
3.存储的数据类型不同,cookie只能存储键值对的字符串类型,而session可以存储任意类型;
4.默认有效期不同,cookie默认是会话级别的cookie,而session默认有效期是30分钟;
**会话:**用户打开一个浏览器,点击了很多超链接,访问了多个web资源,关闭浏览器,这个过程叫会话;
有状态会话:
一个网站,怎么证明你来过?!
客户端 服务端
1.服务端给客户端一个 cookie,客户端下次访问带上 cookie 即可;
2.服务器登记你来过session,下次来的时候服务器来匹配你;
cookie
session
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-gvoLtjEy-1620654430983)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420221220175.png)]
1.从请求中拿到cookie信息
2.服务器响应给客户端cookie
@Override protected void doGet(HttpServ1etRequest req, HttpServletResponse resp) throws ServletException, IOException { //服务器,告诉你,你来的时间,把这个时间封装成为-一个信件,你下带来,我就知道你来了 //解决中文乱码 req.setCharacterEncoding("utf-8"); resp.setCharacterEncoding("utf-8"); PrintWriter out = resp.getWriter(); //获得Cookie,服务器端从客户端获取; Cookie[] cookies = req.getCookies(); //这里返回数组,说明Cookie可能存在多个 //判断Cookie是否存在 if (cookies!=null){ //如果存在怎么办 out.write("你上一次访问的时间是:"); for (int i = 0; i < cookies.length; i++) { Cookie cookie = cookies[i]; //获取cookie的名字key if (cookie.getName().equals("lastLoginTime")){ //获取cookie中的值value 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()+"") ; //设置cookie有效期为1天 cookie.setMaxAge(24*60*60); //响应给客户端一个cookie resp.addCookie(cookie);
cookie:一般会保存在本地的 用户目录下 appdata;
一个网站cookie是否存在上限?!
删除Cookie:
编码解码:
//编码 Cookie cookie = new Cookie("name",URLEncoder.encode("雨点","utf-8")); //解码 out.write(URLDecoder.decode(cookie.getValue(),"UTF-8"));
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pcyJfEld-1620654430984)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420221430117.png)]
什么是Session:
服务器会给每一个用户(浏览器)创建一个Session对象;
一个Session独占一个浏览器,只要浏览器没有关闭,这个Session就存在;
用户登录之后,整个网站都可以访问!—>保存用户的信息;保存购物车的信息;
HttpSession方法
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-yQYGdH7c-1620654430986)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420215426360.png)]
Session和cookie的区别:
使用场景:
使用Session:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-mbdYhL3j-1620654430987)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420220534664.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-XlVGPY31-1620654430988)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420220629202.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ELPfJUC0-1620654430989)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420220710779.png)]
会话Session自动过期,web.xml配置
<!-- 设置Session默认的失效时间--> <session-config> <!-- 15分钟Session自动失效,以分钟为单位--> <session-timeout>15</session-timeout> </session-config>
ServletContext (ApplicationContext)
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-3IlqUFX0-1620654430990)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20210420221833699.png)]