Official Hibernate documentation contains a lot of deprecated features, like here
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();
}
while buildSessionFactory()
is deprecated.
Where to get fresh Hibernate 4 documentation and quick examples?
UPDATE
Another example:
Here wee see as the author was suddenly killed while writing "... shows a Person class with a..." Babah!