51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ET
Servlet笔记9--Cookie
Cookie: 使用Cookie机制实现十天内免登陆: Servlet程序:1packagecom.bjpowernode.javaweb.servlet;23importjava.io.IOException;4importjava.io.PrintWriter;5importjava.sql.Connectio...
代码星球
·
2020-03-29
Servlet
笔记
9--COOKIE
Servlet笔记9--转发与重定向
关于Web中资源跳转的问题: 转发和重定向基本代码:1packagecom.bjpowernode.javaweb;23importjava.io.IOException;45importjavax.servlet.ServletException;6importjavax.servlet.http.HttpServ...
代码星球
·
2020-03-29
Servlet
笔记
转发
重定向
Servlet笔记8--乱码解决方案
乱码解决方案: 代码详解:1packagecom.bjpowernode.javaweb.servlet;23importjava.io.IOException;45importjavax.servlet.ServletException;6importjavax.servlet.http.HttpServlet;...
代码星球
·
2020-03-29
Servlet
笔记
乱码
解决方案
Servlet笔记7--HttpServletRequest介绍
通过HttpServletRequest获取表单提交的数据: 前端页面:1<html>2<head>3<title>register</title>4<metaname="keywords"content="keyword1,keyword2,keyword3...
代码星球
·
2020-03-29
Servlet
笔记
7--HttpServletRequest
介绍
Servlet笔记6--Servlet程序改进
第一步改进,GenericServlet: 我们目前所有放入Servlet类直接实现了javax.servlet.Servlet接口,但是这个接口中有很多方法是目前不需要的,我们可能只需要编写service。直接实现Servlet接口代码丑陋,有必要在中间添加一个适配器,以后所有的Servlet类不再直接实现Serv...
代码星球
·
2020-03-29
Servlet
笔记
6--Servlet
程序
改进
Servlet笔记5--设置欢迎页面及HTTP状态码404、500
欢迎页面: 代码详解: web.xml配置文件:1<?xmlversion="1.0"encoding="UTF-8"?>2<web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"3xmlns="http://java....
代码星球
·
2020-03-29
Servlet
笔记
设置
欢迎
页面
Servlet笔记4--ServletConfig接口和ServletContext接口
ServletConfig接口: ServletContext接口: 代码详解: (1)web.xml配置文件:1<?xmlversion="1.0"encoding="UTF-8"?>2<web-appxmlns:xsi="http://www.w3.org/2001/XMLS...
代码星球
·
2020-03-29
接口
Servlet
笔记
4--ServletConfig
ServletContext
Servlet笔记3--Servlet生命周期
Servlet生命周期: ...
代码星球
·
2020-03-29
Servlet
笔记
3--Servlet
生命
周期
Servlet笔记2--模拟Servlet本质、第一个Servlet程序、将响应结果输出到浏览器中
以下代码均非IDE开发,所以都不规范,仅供参考模拟Servlet本质: 模拟Servlet接口:1/*2SUN公司制定的JavaEE规范:Servlet规范3Servlet接口是Servlet规范中核心接口4接口注意:调用者谁?实现者谁?5*/67publicinterfaceServlet//服务器端小java程序...
代码星球
·
2020-03-29
Servlet
笔记
模拟
本质
第一个
Servlet笔记1--概述
JavaEE概述及系统架构分析: (1)JavaEE概述: (2)系统架构分析: BS架构访问过程详解: Tomcat就是一个Web容器BS架构角色和协议: ...
代码星球
·
2020-03-29
Servlet
笔记
概述
Struts2笔记3--获取ServletAPI和OGNL与值栈
获取ServletAPI: 第一种方式:1//在request域中放入属性req,暂且认为getContext()获取的是request域空间,但实际不是2ActionContext.getContext().put("req","req_value");3//在session域中放入属性ses4ActionCont...
代码星球
·
2020-03-29
Struts2
笔记
获取
ServletAPI
OGNL
vue中methods函数调用methods函数写法
1exportdefault{2data(){3return{4hello:"你好"5}6},7methods:{8open(that){9that.hello="helloworld!"10},11close(){12this.$options.methods.open(this)13}14}15}close函数调用...
代码星球
·
2020-03-29
methods
函数
vue
调用
写法
高级定时器-setTimeout()、setInterval()、链式setTimeout()
使用setTimeout()和setInterval()创建的定时器可以用于实现有趣且有用的功能。执行时机是不能保证的,因为在页面的生命周期中,不同时间可能有其他代码在控制JavaScript进程。在页面下载完后的代码运行、事件处理程序、Ajax回调函数都必须使用同样的线程来执行。实际上,浏览器负责进行排序,指派某段代...
代码星球
·
2020-03-29
高级
定时器
-setTimeout
setInterval
链式
vue中关于计算属性computed以及其中get、set的理解
在重学vue后,了解到这个计算属性,理解了一点点,但是又无法想到什么时候能用到------------计算属性是基于它们的响应式依赖进行缓存的------------get是基于其他的数据来获取到computed里定义的那个数据set是根据computed里定义的那个数据来改变其他的数据暂时就理解了这些,理解到新的会更...
代码星球
·
2020-03-28
vue
关于
计算
属性
computed
git fetch 的简单用法:更新远程代码到本地仓库
方式一1.查看远程仓库123456$gitremote-veoecnhttps://github.com/eoecn/android-app.git(fetch)eoecnhttps://github.com/eoecn/android-app.git(push)originhttps://github.com/com...
代码星球
·
2020-03-28
git
fetch
简单
用法
更新
首页
上一页
...
634
635
636
637
638
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他