Hibernate is a powerful, high performance object/relational persistence and query service. Hibernate lets you develop persistent classes following object-oriented idiom - including association, inheritance, polymorphism, composition, and collections. Hibernate allows you to express queries in its own portable SQL extension (HQL), as well as in native SQL, or with an object-oriented Criteria and Example API.
Hibernate是一个强大高效的对象/关系持久层查询服务器。 Hibernate可以让你开发遵循面向对象风格的持久化类-包括关联,继承,多态,构成和集合。 Hibernate可以让你表达查询自己的便携式的SQL扩展名(即HQL ) ,以及在本地SQL ,或面向对象的API标准和范例。(引用官方)www.hhibernate.org
运行第一个hibernate程序
1.设计持久化类(UserInfo)
对应的映射文件 UserInfo.hbm.xml
建立对应UserInfo类的映射文件 userinfo.hbm.xml
2. 配置Hibernate.cfg.xml文件
3.操作类
4. 测试类
注:数据库是MySQL
数据库设计如下: