1.建表建序列(所用数据库为Oracle,数据库名为XE,创建用户hibernate,密码为123456) conn system/manager; ; grant connect to hibernate; grant resource to hibernate; conn hibernate; create table tb_Employee( pk_Employee_ID number primary key, name ) not null, email ) not null, hire…