- 浏览: 36710 次
- 性别:
- 来自: 上海
最新评论
-
belber:
赞一个,真是一个用心的楼主。
面试时候经常会问的一些问题(不断补充中)
文章列表
我们要做到不但会写SQL,还要做到写出性能优良的SQL,以下为笔者学习、摘录、并汇总部分资料与大家分享!(1) 选择最有效率的表名顺序(只在基于规则的优化器中有效):ORACLE 的解析器按照从右到左的顺序处理FROM子句中的 ...
ORA-01555 "Snapshot too old"
ORA-01555 "Snapshot too old" - Detailed Explanation
原因:1.回滚段太小 2.回滚段太少 3. 事物提交太频繁===================================================Overview~~~~~~~~This article will discuss the circumstances under which a query can return the Oracle error ORA-0 ...
http://www.mylanguageexchange.com/
THE GIST
Experts are calling for new risk assessments of the vulnerability of nuclear plants in the yo natural disasters.
Each of the 104 reactors in the United States has to undergo individual testing for local risks.
More than 80 reactors worldwide are located in seismically active areas. ...
1.Take the rap Except the blame[bleim] for a wrongdoing; 2.Confession [kən'feʃən] Admitting [ədˈmit] to a wrongdoing or a lie; 3.Embezzlement [im'bezlmənt] Taking money illegally from a business; 4.Murder[ˈmə:də] Killing another human being; 5.Manslaughter ['mænˌslɔ:tə] Causing death withou ...
http://evalias/enterprisevault/archiveexplorerui.asp
目 录
1 Accordion(可折叠标签) 2
1.1 实例 2
1.2 参数 3
2 DateBox(日期框) 4
2.1 实例 4
2.2 参数 6
2.3 事件 6
2.4 方法 6
3 ComboBox(组合框) 7
3.1 实例 7
3.2 参数 9
3.3 事件 9
3.4 方法 9
4 Dialog(对话框) 10
4.1 实例 10
4.2 参数 12
4.3 事件 12
4.4 方法 12
5 Messager(提示框) 12
5.1 实例 12
5.2 方法 15
5.3 扩展 16
6 NumberBox(数字框) 16
6.1 实例 16
6.2 参数 17
7 Va ...
The Washington Metropolitan Area Transit Authority (WMATA) operates the second largest rail transit system and the fifth largest bus network in the United States. Safe, clean and reliable, “America’s Transit System” transports more than a third of the federal government to work and millions of touris ...
AMESB技术上有以下主要特点:
基于异步消息,标准化统一API,模式化编程
消息体大小、并发处理能力的阀门控制
提供高可靠的服务监控、防阻塞能力
支持内存队列和持久化存储队列
消息基于二进制java对象而不是XML文本,具备消息体大小及序列化深度约束能力
支持多种通信协议(WmIS、RMI、HTTP),消除协议间差异,对消息对象完全透明
完全框架化,一般情况下无需对AMESB进行代码开发
部署与维护简单,无需依赖业务的DTO对象
调用远程服务支持可靠调用及负载均衡,支持JAAS验证体系,高效EJB调用
支持配置文件热部署,并提供可视化管理界面
请求高可靠响应机制,保证 ...
String.split()
- 博客分类:
- JAVA开发
在java.lang包中有String.split()方法,返回是一个数组
我在应用中用到一些,给大家总结一下,仅供大家参考:
1、如果用“.”作为分隔的话,必须是如下写法:String.split("\\."),这样才能正确的分隔开,不能用String.split(".");
2、如果用“|”作为分隔的话,必须是如下写法:String.split("\\|"),这样才能正确的分隔开,不能用String.split("|");
“.”和“|”都是转义字符,必须得加"\\";
...
第一,谈谈final, finally, finalize的区别。
第二,Anonymous Inner Clas* (匿名内部类) 是否可以**tends(继承)其它类,是否可以implements(实现)inte***ce(接口)?
第三,Static Nested Class 和 Inner Class的不同,说得越多越 ...