该程序为尚学堂马士兵老师讲解,模拟了hibernate的原理,主要应用了字符串拼接,反射知识. step1,新建数据库 use jd; create table _student( _id int(11), _nage varchar(20), _age int(11)); step 2 student实体类,再次略过 step3,编写session类,模拟hibernate的实现原理. import java.lang.reflect.InvocationTargetException; im…