文章列表
在eclipse下,web项目代码编译所需要的jar包(除了jre和服务器提供的),一定要放入lib文件夹下,否则部署后将无法加载类。
读log4j介绍的几点
1、Named Hierarchy
A logger is said to be an ancestor of another logger if its name followed by a dot is a prefix of the descendant logger name. A logger is said to be a parent of a child logger if there are no ancestors between itself and the descendant logger.
2、Level Inheritance
The inh ...
- 2009-02-27 17:04
- 浏览 727
- 评论(0)
一、
$(document).ready(function(){
// Your code here...
});
可简写为
$(function() {
// do something on document ready
});
使你的代码在dom模型加载后执行
- 2009-01-16 14:23
- 浏览 745
- 评论(0)
1、equals
if (this == obj) {
return true;
}
if (obj == null || this.getClass() != obj.getClass()) {
return false;
Account account = (Account) obj;
return new EqualsBuilder()。append(this.id, account.id)
.append(this.firstName, account.firstName)
.append(this.lastName, account.lastName) ...
- 2009-01-15 15:45
- 浏览 1269
- 评论(0)
一、居中
1、自动空白边 margin:0 auto;
2、相对定位加负值空白边
position:relative;
left:50%;
margin-left:-50%;
二、浮动布局
1、两列浮动布局 float:left;float:right
2、三列浮动布局,把两列中的一列再分成两列
三、流体布局
以百分代替px,要确定最小值以避免过小
四、弹性布局
以em为单位
五、流体-弹性布局
以em设置宽度,以%设置最大宽度
六、非固定布局中图像的处理
1、作为背景
2、设置包含图像的容器overflow:hidden;避免伸缩
3、对于可伸缩的 ...
- 2009-01-15 14:40
- 浏览 825
- 评论(0)
1、用文件对象代替文件名字符串做处理
2、学会用缓存类
http://commons.apache.org/io/bestpractices.html
- 2009-01-06 15:01
- 浏览 936
- 评论(0)