hibernate中使用schemaExport生成數據表報錯解決方法
阿新 • • 發佈:2017-07-17
驅動 生成 和數 解決方法 and 報錯解決 itl ava con 【解決方法】
1.hibernate中使用schemaexport生成數據表,很多教材是教你這麽寫的:
- SchemaExport schemaExport = new SchemaExport(new Configuration().configure());
- schemaExport.create(true, true);
- ServiceRegistry serviceRegistry = (ServiceRegistry) new StandardServiceRegistryBuilder().configure().build();
- MetadataImplementor metadataImplementor = (MetadataImplementor) new MetadataSources(serviceRegistry).buildMetadata();
- SchemaExport export = new SchemaExport(serviceRegistry, metadataImplementor);
- export.create(true, true);
hibernate中使用schemaExport生成數據表報錯解決方法