摘要:
public class Main { public static void main(String[] args) { Pipeline p = new Pipeline(); p.addLast(new Handler1()); p.addLast(new Handler2()); p.requ 阅读全文
摘要:
CREATE TABLE emp ( id int NOT NULL AUTO_INCREMENT, name varchar(255) DEFAULT NULL, dept_id int DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INC 阅读全文