Fork me on GitHub
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页
摘要: JSP隐式对象是JSP容器为每个页面提供的Java对象,开发者可以直接使用它们而不用显式声明。JSP隐式对象也被称为预定义变量。JSP所支持的九大隐式对象: 对象 描述 request HttpServletRequest接口的实例 response HttpServletResponse接口的实例 阅读全文
posted @ 2021-01-14 11:54 叶语婷 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Springboot+Mybatis+redis+postman项目实战总目录* SpringBoot+Mybatis+PostMan(五):token登陆认证过程二(redis缓存引入) SpringBoot+Mybatis+PostMan(六):token登陆认证过程三(redis封装与干掉原来 阅读全文
posted @ 2021-01-14 10:58 叶语婷 阅读(2580) 评论(1) 推荐(0) 编辑
摘要: /** * @author yeyuting * @create 2021/1/13 */ public class Abc { public static int i = 0; public static void main(String[] args) throws InterruptedExc 阅读全文
posted @ 2021-01-13 20:37 叶语婷 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Springboot+Mybatis+redis+postman项目实战总目录* SpringBoot+Mybatis+PostMan(五):token登陆认证过程一(token生成与认证) SpringBoot+Mybatis+PostMan(五):token登陆认证过程二(redis缓存引入) 阅读全文
posted @ 2021-01-13 11:57 叶语婷 阅读(436) 评论(0) 推荐(0) 编辑
摘要: Springboot+Mybatis+redis+postman项目实战总目录* SpringBoot+Mybatis+PostMan(四):学习拦截器 SpringBoot+Mybatis+PostMan(五):token登陆认证过程一(token生成与认证) SpringBoot+Mybatis 阅读全文
posted @ 2021-01-13 11:23 叶语婷 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 1.request 对象request 对象是 javax.servlet.httpServletRequest 类型的对象。 该对象代表了客户端的请求信息,主要用于接受通过 HTTP 协议传送到服务器的数据。(包括头信息. 系统信息. 请求方式以及请求参数等) 2.response 对象respo 阅读全文
posted @ 2021-01-13 10:37 叶语婷 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 一、http简介http协议是用于万维网传输超文本到本地浏览器的协议。http基于TCP/IP通信协议传输数据。 1. http工作原理 http协议工作于客户端——服务器端上,浏览器作为HTTP客户端为HTTP服务器端即web服务器发送所有请求。web服务器接到请求后,向客户端发送相应信息。 2. 阅读全文
posted @ 2021-01-13 10:32 叶语婷 阅读(169) 评论(0) 推荐(0) 编辑
摘要: session:记录在服务器端 默认被存在在服务器的一个文件里(不是内存),session 的运行依赖 sessionID,而 sessionID是存在 cookie 中的 cookie:记录在客户端 session作用:当浏览器访问服务器端某个页面时,会在服务器端开辟出一段内存,这段内存就叫做se 阅读全文
posted @ 2021-01-12 20:37 叶语婷 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 打开idea项目后部分目录下出现橙色的时钟标志(如下),这时说明项目没有成功添加入maven项目中,这时就需要我们手工删除再添加一次。 操作步骤: 1. 进入Project Structure——module——点击减号,将项目全部移除maven项目。 2. 将项目重新添加入maven项目中,点击加 阅读全文
posted @ 2021-01-12 16:33 叶语婷 阅读(1991) 评论(0) 推荐(0) 编辑
摘要: Springboot+Mybatis+redis+postman项目实战总目录* SpringBoot+Mybatis+PostMan(三):学习过滤器 SpringBoot+Mybatis+PostMan(四):学习拦截器 SpringBoot+Mybatis+PostMan(五):token登陆 阅读全文
posted @ 2021-01-12 14:31 叶语婷 阅读(1061) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页