上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 46 下一页
摘要: 9.1.标识符JSESSIONID Session既然是为了标识一次会话, 那么此次会话就应该有一个唯一 的标志, 这个标志就是sessionld, 每当一次请求到达服务器,如果开启了会话(访问了session) ,服务器第一步会查看是否从客户端回传一个 名为JSESSIONID的cookie,如果 阅读全文
posted @ 2022-04-07 18:22 lwx_R 阅读(98) 评论(0) 推荐(0)
摘要: 什么是 AJAX? AJAX = Asynchronous JavaScript And XML. AJAX 并非编程语言。 AJAX 仅仅组合了: 浏览器内建的 XMLHttpRequest 对象(从 web 服务器请求数据) JavaScript 和 HTML DOM(显示或使用数据) Ajax 阅读全文
posted @ 2022-04-06 18:47 lwx_R 阅读(40) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javas 阅读全文
posted @ 2022-04-06 18:37 lwx_R 阅读(97) 评论(0) 推荐(0)
摘要: package com.xxxx.servlet; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; im 阅读全文
posted @ 2022-04-05 19:12 lwx_R 阅读(60) 评论(0) 推荐(0)
摘要: package com.xxxx.servlet; import com.sun.javaws.IconUtil; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import ja 阅读全文
posted @ 2022-04-05 19:11 lwx_R 阅读(108) 评论(0) 推荐(0)
摘要: Servlet 服务端程序 提供其服务的服务器叫容器 tomcat 工作流程 locahost:8080/projectName/资源名 生命周期 Servlet没有main方法,不能独立运行,它的运行完全由Servlet引擎来控制和调度。所谓生命周期, 指的是servlet容器何时创建servle 阅读全文
posted @ 2022-04-05 19:10 lwx_R 阅读(53) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .father *{ display: block; border: 1px solid greenyellow; 阅读全文
posted @ 2022-04-05 18:05 lwx_R 阅读(48) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> </title> <link rel="stylesheet" type="text/css" href="JQ_css.css"/> </head> <body> <div i 阅读全文
posted @ 2022-04-04 18:37 lwx_R 阅读(68) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <p id="p1">this is <b>p</b></p> <button type="button" id="btn1">cl 阅读全文
posted @ 2022-04-04 18:11 lwx_R 阅读(39) 评论(0) 推荐(0)
摘要: IDEA 2021.3版本 1.tomcat下载 官网:https://tomcat.apache.org/ 选择zip下载即可 2. 部署项目 2.1 新建普通Java项目 2.2 在工程右键选择add framework support 项目文件形式 2.3 勾选web Appcalicatio 阅读全文
posted @ 2022-04-02 17:46 lwx_R 阅读(1251) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 46 下一页