`
eyesmore
  • 浏览: 363922 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
Marc McNeill : Web 2.0 is far from dead Last updated: 2009-02-17T05:14:02Z Web 2.0 is anything but dead. The term is no longer necessary as its concepts become ubiquitous. So Web 2.0 is in terminal decline according to this TechCrunch article. The basis of this statement is anecdotal ...
【1、数据加密安全】        在实际项目中,密钥分层最常见的是: 一个主密钥,该密钥一般是长期固定的,密钥重送往往是线下进行的,比如电子邮件、快件或电话。一个工作密钥,也叫会话密钥或工作密钥,该密钥是经常变化的,往往是每次登陆系统时就动态分配一个(由于动态分配的,经常变化,所以密钥分发不可能再通过线下的方式),密钥分发是在线完成的,为了保证密钥在网络上传输的安全性,往往会用主密钥对其进行加密。       另外,主密钥往往是非对称的,而会话密钥往往是对称的。原因很简单,对称加密速度快,非对称速度慢,对于大数据块(交易报文)用对称的更好,所以会话密钥最好采用对称的,但是对称密钥容易被泄漏,分 ...
【1、同余关系定义   (模n相等)】 Two integers a and b are said to be congruent modulo n , if their difference a  − b is an integer multiple of n . An equivalent definition is that both numbers have the same remainder when divided by n. If this is the case, it is expressed as:         a ≡ b   (mod n ...
http://java.decompiler.free.fr/   The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions. JD-Core i s a freeware library that reconstructs Java source code from one or more “.class” files. JD-Core may be used to recover lost so ...
http://commons.apache.org/dbutils/ 这个程序很小,但是也是apache的一个开源项目,从这么个小项目看看高手是如何把代码写得熨帖的。   Commons DbUtils: JDBC Utility Component DbUtils is a small set of classes designed to make working with JDBC easier. JDBC resourc ...
http://www.thoughtworks.com/what-we-do /service-oriented-architecture.html   Large-scale applications are complex to develop and to live with. The key to simplifying them and living with them is to create modular, flexible systems. However this isn't easy. ThoughtWorks has extensive, proven experi ...
问题的提出: Ant(蚂蚁是搬东西的):编译,打包,配置,部署。 这些命令如果一个个地写很麻烦,而且不可以重用,能不能把一个动态的过程描述成一个静态的步骤。 于是,我们想到用一个批处理命令文件,但是如果用.sh和.bat则不可以跨平台,但是如果用ant则可以跨平台。 Ant为了做到跨平台,一个是跨操作系统,另一个是跨IDE,Ant首先抽象出一个中间语言,这个语言是基于xml的。 然后,用Ant执行器来解析该xml描述的操作,并最终和操作系统的批处理命令对应起来。当然,对于ftp这样的外部命令, 可以由第三方插件来支持。 Ant是Apache组织负责开发和维护的,Ant的许多第三方插件也是Apa ...
1、大多数servlet容器都是将所有servlet放在一个JVM中运行的,当然也有些高端容器,支持分布式servlet。 2、servlet实例的持续性 ,也就是说:一个servlet实例在多个http请求之间保持持续性。通俗地讲就是,当servlet被载入时,服务器生成一个实例对象,这个实例处理所有对该servlet的请求。注意:我们的业务框架和前置框架的交易处理类都不是持续性的,而是来个请求生成一个处理类。 (如果以后某个同事开发一个什么容器,首先就可以问问生命周期和对象的持续性方面的问题。比如,我们现在的业务框架中的service容器中service对象是非持续的。) 持续性有几个好 ...
servlet容器设计感想(初级) ——对我们设计“umpay的前置和业务服务器”可能有帮助 ——我们可以把通信框架看成是一个servlet容器,把交易处理类看成是一个个的servlet。 但是,我们可以思考下,我们的框架设计的怎么样,我 ...
Here’s how you get a session ID from the request: HttpSession session = request.getSession(); Here’s what this does for you: If the session includes a session ID cookie          then find the session matching that session ID else (no session ID cookie or no matching session )          create a new ...
幻灯片 9 .O {color:black; font-size:149%;} .O1 {color:black; font-size:149%;} .O2 {color:black; font-size:149%;} a:link {color:#CB00CB !important;} a:active {color:#3300FF !important;} a:visited {color:#0098CB !important;} <!--.sld {left:0px !important; width:6.0in !impor ...
3. COOKIE FUNDAMENTALS 3.1 Introduction Whether you're a programmer or just a web user looking for answers, a big part of understanding cookies is to go into the gory details. This section does just that. 3.2 How does a cookie really work? Understanding how cookies really work require ...
实验用的浏览器firefox,并安装了HttpFox插件,以sniffer网络报文的。   【请求】 (Request-Line)    GET /HelloWorld/cookiebase.do HTTP/1.1 Host    localhost:8080 User-Agent    Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 Accept    text/html,application/xhtml+xml,application/xml;q=0.9,* ...
1、地理信息系统方面     http://www.mapbar.com/     http://www.bjbus.com/home/index.php     google 地图  
HTTP安全方面的进化史: Basic Access Authorization; Digest Access Authoriazation; SSL TLS 1、firefox 没携带“用户名+密码”去访问www.jxceo.com        服务器返回: 401    Unauthorized   2、firefox 在包头的可选字段Authorization携带“用户名+密码”再次访问www.jxceo.com,但是用户名和密码不对,服务器返回: 401    Unauthorized (包头的Authorization字段是个可选字段,如果服务端的资源不需要进行认证,则服 ...
Global site tag (gtag.js) - Google Analytics