官方 Hibernate 文档包含许多不推荐使用的功能,例如这里
http://docs.jboss.org/hibernate/orm/4.1/quickstart/en-US/html_single/#d5e57
protected void setUp() throws Exception {
// A SessionFactory is set up once for an application
sessionFactory = new Configuration()
.configure() // configures settings from hibernate.cfg.xml
.buildSessionFactory();
}
虽然buildSessionFactory()
已弃用。
从哪里获得最新的 Hibernate 4 文档和快速示例?
更新
另一个例子:
在这里,我们看到作者在写“......显示一个带有......”的 Person 类时突然被杀了 Babah!