会Hibernate的麻烦帮忙解决个问题如果我的数据库整个丢失了,请问怎么样才能通过Hibernate的配置文件以及pojo重新创建出数据库,不要告诉我从配置文件里一个一个取出来,再重新建一次……[解决办法]Configuration cfg = new Configuration().configure("hibernate.cfg.xml");SchemaExport se = new SchemaExport(cfg);se.create(true, true);