- 浏览: 234842 次
- 性别:
- 来自: 上海
-
最新评论
-
hanmiao:
我在IBM网站上找到这篇文章,比较详细的介绍了信息分片与信息分 ...
Websphere MQ -
lancezhcj:
...
Oracle索引 -
shaier:
讲的很不错啊!
SERVICE_NAME, SID和schema区别 -
echohfut:
好久没有关注了。但是取下来的代码怎么导入Eclipse呢?
liferay笔记 -
webee:
已经有ide了!命令都可以不要了!
liferay笔记
文章列表
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没有被指定为任何值),那么实例的名字由该用户的环 ...
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 ...
- 2009-11-13 16:33
- 浏览 1061
- 评论(0)
1. Tomcat load balance/cluster/fail off
2. SSO based on CAS
tomcat
JBoss portal
SSL
3. Acegi filter / JAAS
4.
- 2009-11-12 22:09
- 浏览 728
- 评论(0)
摘自: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 在这些浏览器中运行得到的时间差很大 ...
- 2009-11-11 08:13
- 浏览 1008
- 评论(0)
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 ...
- 2009-10-21 14:16
- 浏览 1438
- 评论(2)
<!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 ...
- 2009-10-19 14:41
- 浏览 2792
- 评论(0)
在用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 ...
- 2009-09-29 16:32
- 浏览 762
- 评论(0)
1. 正则表达式
function trim(str) { return str.replace(/(^\s+|\s+$)/g,''); //删除开头和结尾所有的空格 }
注:^开头
$结尾
\s空格匹配
+多次出现
g全文匹配 i 忽略大小写
2.
setTimeout(message, 3000); //3秒后执行函数message一次,如果要重复执行需要在message函数中再调用setTimeout一次
- 2009-09-29 11:27
- 浏览 910
- 评论(0)
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 ...
以下两个是同一个时间:
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
- 2009-09-20 16:01
- 浏览 773
- 评论(0)