`
echohfut
  • 浏览: 234842 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
use "netstat -b" to see used ports and the executables using them   搜索打开的端口号: in Windows: netstat -an|find "61616"   in Linux: netstat -an|grep 61616  
1. SID是Oracle实例名,实例名指的是用于响应某个数据库操作的数据库管理系统的名称。实例名是由初始化参数文件的参数instance_name决定的。如果这个参数不被指定(即instance_name没有被指定为任何值),那么实例的名字由该用户的环 ...

Ajax readystate状态

    博客分类:
  • UI
XMLHttpRequest readyState Integer reporting the status of the request: 0 = uninitialized 1 = loading  已调用open方法 2 = loaded  已调用send方法 3 = interactive 已接收部分数据 4 = completed 数据接收完毕,此时可以通过通过responseBody和responseText获取完整的回应数据
1. JBoss & JBPM & SOA   2. ActiveMQ   3. SQL & Oracle   4. Struts2 & Spring & Hibernate
1. inverse=true | false   2. cascade   3. lazy-loading   4. session-per-request & open session filter   5. transaction demarcation
1. Model Phase       Websphere Business Modeler     Rational Software Architect   2. Assemble Phase          Rational Appliction Developer      Websphere Integration Developer      Websphere Portlet Factory       ...   3. Deploy Phase      Websphere Application Server      Websphere Po ...
refer to: http://portals.apache.org/jetspeed-2/tutorial/01/genapp.html   Setup:   1.  generate two maven submodules: jetexpress-portal and jetexpress-pa.   mvn org.apache.maven.plugins:maven-archetype-plugin:2.0-alpha-4:generate \    -DarchetypeGroupId=org.apache.portals.jetspeed-2 \    -Darche ...
1. Tomcat load balance/cluster/fail off   2. SSO based on CAS      tomcat      JBoss portal      SSL   3. Acegi filter / JAAS   4.
摘自:http://www.ibm.com/developerworks/cn/web/wa-aj-advjquery/   结论 1:Mootools、jQuery 和 Dojo 在性能方面不分上下。 根据性能进行分类的话,这些库可以分为两组,而不管使用什么浏览器(FF,IE,Chrome)。Mootools、Dojo 和 jQuery 通常属于一个组别,而 Prototype 和 YUI 属于另一个组别,前一组要比后一组快得多。   JavaScript 速度差异的主要原因是每个浏览器都使用自己的 JavaScript 引擎。JavaScript 在这些浏览器中运行得到的时间差很大 ...
1. 扩展开发方式       refer to:       1) http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/Development%20Environment%20(Windows);jsessionid=DB374B4B6CDBE3F3211E4538AAB5CFB5       2) http://hi.baidu.com/joelli/blog/item/8205a0ed7103034579f05514.html 这个比较靠谱       主要步骤是: 1.1 安装对应的JDK,Ant,Tom ...
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"> <head> <title> 代码实例:拖动对象 Drag Obj ...

AJAX学习笔记

    博客分类:
  • UI
在用IFrame做Ajax时,需要考虑的有: 1. 先定义隐藏的IFrame <iframe name="myIframe" src="blank.html" style="width:0px;height:0px" frameborder="0"></iframe>2. 通过button,Href或者form提交,动态修改IFrame的src属性或者设置Href,Form的Target属性   3. 如何在父窗口和IFrame页面传递数据        Three ways of ...
1. 正则表达式    function trim(str) {    return str.replace(/(^\s+|\s+$)/g,''); //删除开头和结尾所有的空格  }   注:^开头       $结尾      \s空格匹配      +多次出现      g全文匹配 i 忽略大小写   2.     setTimeout(message, 3000);  //3秒后执行函数message一次,如果要重复执行需要在message函数中再调用setTimeout一次    
REST(Representational State Transfer)是 Roy Fielding 提出的一个描述互联系统架构风格的名词。   Another way to say REST is in HTTP, any request a client can make involves a URL and an HTTP method. With REST, the URL is designed to represent a noun and the HTTP method always maps to one of several standard verbs, which w ...

Date in Java

    博客分类:
  • JDK
以下两个是同一个时间:   UTC, Coordinated Universal Time (UTC), use time zone of  GMT   GMT, Greenwich Mean Time   标准时间  18:00 GMT = 18:00+00:00 在用  java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ssZ");格式化时间时: Z表示的时间格式是+00:00 z表示的时间格式是UTC
Global site tag (gtag.js) - Google Analytics