两步实现hibernate配置多个数据库的方法


hibernate 配置多个数据库的解决方案

第一步:建立两个hibernate.cfg.xml配置文件,取名test1.cfg.xml,test2.cfg.xml
第二步:修改原来的Configuration cfg = new Configuration().configure();
      为:Configuration cfg1 = new Configuration().configure("test1.cfg.xml");
        Configuration cfg2 = new Configuration().configure("test2.cfg.xml");

你可能感兴趣的:(Hibernate,xml)