欢迎来到天天文库
浏览记录
ID:32020591
大小:46.65 KB
页数:34页
时间:2019-01-30
《javaScript,css,html,java总结.docx》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、servlet生命周期加载并实例化、初始化、服务、销毁在整个生命周期中只初始化一次,在使用资源紧张和长期没有servlet请求发出时servlet销毁struts1:要继承如dispatchAction基类、依赖servletAPI、后台方法里有httpservletrequest,要定义ActionForm,单例struts2:不依赖servletAPI,脱离web容器运行,请求时有namespace,后台需要session时要实现相应接口,后台Action属性接收参数,多例spring对类的实例化,配置文件加载ApplicationContextapplicat
2、ionContext=newFileSystemXmlApplicationContext("file:"+ctxPath);获取时applicationContext.getBean(id);//获取客户端IPHttpServletRequestWrapperhr=newHttpServletRequestWrapper(request){publicStringgetRemoteAddr(){StringclientIpStr="X-ClientIP";StringrealIP=super.getHeader(clientIpStr);if(!StringUti
3、l.isNull(realIP)){returnrealIP;}returnsuper.getRemoteAddr();}};StringbindIP=user.getBindIP();StringIP=hr.getRemoteAddr();if(!StringUtil.isNull(bindIP)&&!IP.equals(bindIP)){request.setAttribute(CodeUtil.ERROR_INFO,"您的终端IP与该4A主账号绑定的终端IP不一致,不能登录");request.getRequestDispatcher(loginPage).f
4、orward(request,response);returnnull;}多线程来获取任务池中的任务,取不到任务就等待,有任务放入就唤醒所有等待的线程调任务java.util.concurrent.ExecutorService一个线程跑完并停止后获取一个状态标识fastjsonjson-libjson比较publicstaticinti;static{i=9;System.out.println("ChildClassstatic"+i);}服务启动后调用该类(如访问静态成员变量i),static静态代码块执行,以后再调用该类不再执行(把static里的i改变不起
5、作用)--------------------------------------javaScript知识点el表达式:${((user.status==null)
6、
7、(user.statuseq'1'))?'checked':''}radio元素functionf(){varradios=document.getElementsByName("isSafeAcc");for(vari=0;i8、lementById("safeAccountType").disabled="";}......jQuery对象[Objectobject]tr.children()[0]会转换成js对象varops=document.getElementsByTagName("option");alert(ops[0].getAttribute('id')+""+""+ops[0].attri9、butes['id'].value+""+ops[0].innerHTML);alert(document.cookie);document.getElementById("sp").innerHTML=document.cookie;varexp=newDate();exp.setTime(exp.getTime()+1*24*60*60*1000);document.cookie="mytest="+escape("cookiemy")+";expires="+exp.toGMTString();varid=idValues[0];vartext=idVal
8、lementById("safeAccountType").disabled="";}......jQuery对象[Objectobject]tr.children()[0]会转换成js对象varops=document.getElementsByTagName("option");alert(ops[0].getAttribute('id')+""+""+ops[0].attri
9、butes['id'].value+""+ops[0].innerHTML);alert(document.cookie);document.getElementById("sp").innerHTML=document.cookie;varexp=newDate();exp.setTime(exp.getTime()+1*24*60*60*1000);document.cookie="mytest="+escape("cookiemy")+";expires="+exp.toGMTString();varid=idValues[0];vartext=idVal
此文档下载收益归作者所有