一.在数据库中创建teacher表(数据库hibernate) create table teache( id int auto_increment primary key, name ), title ) ); 二.创建model 在cn.orlion.hibernate.model下创建实体类Teacher(注意添加注解,一开始只添加了@Id,然后抛出异常,后来又加上了@GeneratedValue(strategy = GenerationType.AUTO)) package cn.or…