遅ればせながらhibernate試してみた

Hibernateの公式ドキュメントはここで見れるんだが、
http://www.hibernate.org/hib_docs/reference/en/html/session-configuration.html#configuration-xmlconfig
http://www.hibernate.org/hib_docs/reference/ja/html/session-configuration.html#configuration-xmlconfig
一番下に書いてある hibernate.cfg.xml の参照を変更する例が上手く動かなくて悩んでしまった。

SessionFactory sf = new Configuration() .configure("catdb.cfg.xml") .buildSessionFactory();

少なくとも私の環境(hibernate2.1.6+Eclipse3.0)だと上手く探せないみたいで、『net.sf.hibernate.HibernateException: hoge.cfg.xml not found』とか言われて悩んでしまった。いろいろ試してみたら、ファイル名先頭にスラッシュつければいいみたい。

SessionFactory sf = new Configuration() .configure("/catdb.cfg.xml") .buildSessionFactory();

↑こんな感じ。
例によってソースまでちゃんと追って調べる気はないすすまそ。