`
chenlingreen
  • 浏览: 33449 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
一、什么是Java事务 通常的观念认为,事务仅与数据库相关。 事务必须服从ISO/IEC所制定的ACID原则。ACID是原子性(atomicity)、一致性(consistency)、隔离性(isolation)和持久性(durability)的缩写。事务的原子性表示事务执行过 ...
An enterprise application provider is likely to choose a messaging API over a tightly coupled API, such as Remote Procedure Call (RPC), under the following circumstances. The provider wants the components not to depend on information about other components' interfaces, so that components can be easil ...
<select name="month"> <option>Jan</option> <opton>Feb</option> </select>  IE中:document.getElementById("month") 正确document.getElementsByName("month") 正确 Firefox:document.getElementById("month") 错误(必须加属性Id)document.getElementsB ...
window.event IE:有window.event对象 FF:没有window.event对象。可以通过给函数的参数传递event对象。如onmousemove=doMouseMove(event) if(evt==null){evt=window.event;_obj=evt.srcElement;} else _obj=evt.target; 鼠标当前坐标 IE:event.x和event.y。 FF:event.pageX和event.pageY。 通用:两者都有event.clientX和event.clientY属性。 鼠标当前坐标(加上滚动条滚过的距离) ...
<iframe src=" http://docs.codehaus.org/display/MAVENUSER/The+Project+Object+Model+(POM)" frameborder="0" width="100%" height="800"> </iframe>
一 :为什么同时使用commons-logging和Log4j?为什么不仅使用其中之一? Commons-loggin的目的是为“所有的Java日志实现”提供一个统一的接口,它自身的日志功能平常弱(只有一个简单的 SimpleLog ...
1. Glossary DES: Data Encryption Standard DSA: Data signal algorithm 2. Message Digest The algorithm names in this section can be specified when generating an instance of Messagedigest. MD2: The MD2 message digest algorithm as defined in RFC 1319. MD5: The MD5 message digest algorithm as d ...
(1)Contributors 和 Recipients Contributors 指的是对某个开源软件或项目提供了代码(包括最初的或者修改过的)发布的人或者实体(团队、公司、组织等),Contributors 按照参与某个软件开源的时间先后,可以分为an initial Contributor 和 subsequent Contributors 。 Recipients指的是开源软件或项目的获取者,显然,subsequent Contributors 也属于 Recipients之列。 (2)Source Code 和 Object Code Source Code 指的是各种语言写成的源代 ...
Datasource of Tomcat-5.0.8 xml 代码 <Context path="/app" docBase="D:/jakarta-tomcat-5.0.28/\webapps/app"           debug="0" privileged="true">       <Resource name="jdbc/****" scope="Shareable" type="javax.sql.Dat ...
        Maven 出现到现在也有很长时间了,初识它的感觉至今仍清晰的印在脑海中。现在想来,当时从 Ant 移情 Maven 的想法其实很朴素,就是因为 Maven 可以以网站的形式展现与项目相关的信息,如开发人员列表、各种 Report。这种方式为项目的构建带来了极大的方便,尤其是 Report 的。试想对于产生的 Junit-Report、JavaDoc、CheckStyle、PMD 等报告,如果没有一个统一的入口,每次切换目录是多么令人厌烦的事情! Maven 无疑是相当成功的,这一点从越来越多的开源项目开始使用 Maven 就可以看出。Maven 取得成功的原因很简单:在 ...
Global site tag (gtag.js) - Google Analytics