摘要:
CREATE TABLE student ( id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, teacher INTEGER UNSIGNED NOT NULL, name varchar(12) BINARY NOT NULL... 阅读全文
摘要:
You can set CLASSPATH and PATH in your user directory or /etc/profile.JAVA_HOME=/usr/java/jdk1.6.0_10JAVA_BIN=/usr/java/jdk1.6.0_10/binexport JAVA_HOM... 阅读全文
摘要:
public static E deepClone(E object) throws IOException, ClassNotFoundException { ByteArrayOutputStream bo = new ByteArrayOutputStream(); ObjectOutp... 阅读全文
摘要:
In springMVC, We use model.addAttribute(String,String) to add something into request, then we can fetch it in the forward JSP page through EL expressi... 阅读全文