文章列表
This is my note on reading ITA(anno.1), I start reading ITA from the end of 2010 , one year before my graduation. Lots of thinking defects exposed in reading, when I rethinked base of my technical world.
Scientific master pieces can endow you with enlightment, teach your effic ...
public class Mergesort {
private int[] numbers;
private int[] helper;
private int number;
public void sort(int[] values) {
this.numbers = values;
number = values.length;
this.helper = new int[number];
mergesort(0, number - 1);
}
private void mergesort(int ...
我理解的五层设计(ssh系列):
obj: pojo基本信息字段(基于hibernate-orm映射)
dao: 针对obj的CRUD操作(基于hibernate->spring)
sad: service access dao 套用dao操作的具体业务Biz操作(service)
aas: actions access service 动作调用服务
jaa: jsp/servlet access actions 页面调用动作
简扼,高效,清晰,优雅
Concision Hi-Efficiency Stablity Scalability Clarity ...