顯示具有 Java 標籤的文章。 顯示所有文章
顯示具有 Java 標籤的文章。 顯示所有文章

2010年4月12日 星期一

Java + Struts + Hibernate Tutorial

http://www.scribd.com/doc/25244173/Java-Struts-Hibernate-Tutorial

2010年4月5日 星期一

Eclipse + Tomcat Luancher

http://osric-life.blogspot.com/2008/08/eclipse-3x-tomcat.html

2010年3月11日 星期四

JUnit 學習筆記

JUnit 是我們做java testing 的良友, 快~靚~正~
非常好的中文教學~ 又是他~ 良葛格的教學~~

http://caterpillar.onlyfun.net/Gossip/JUnit/JUnitGossip.htm

2009年10月8日 星期四

Java Heap Space 解決法

如果你用unix/linux
/tomcat/bin/catalina.sh 加上下面的命令:
JAVA_OPTS="-Xms32m -Xmx256m"

2009年9月29日 星期二

Hibernate Problem or Exception

Hibernate Problem or Exception

org.hibernate.hql.ast.QuerySyntaxException:
要先check 一次你的"HQL" example "from User" << 當中的User 並不是db table 的名稱, 而是object 的名稱 i.e. model.User (請跟足大細階)。

因為HQL 會以java 的object 來根據hbm.xml 內的對照表,找出db 內的table 以至column。