首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

怎么在没有hibernate.cfg.xml的情况上导出DDL

2012-10-31 
如何在没有hibernate.cfg.xml的情况下导出DDL因为项目是用spring来配置hibernate,同时用的是hibernate的an

如何在没有hibernate.cfg.xml的情况下导出DDL

因为项目是用spring来配置hibernate,同时用的是hibernate的annotation,所以根本不没有任何hibernate相关的xml配置文件(最喜欢零配置了,呵呵),但是当要导出sql的DDL的时候问题就来了,一般hibernate的schema export的教程上面都要配置一个hibernate.cfg.xml,这时只能自己写code来实现导出了,其实也很简单。

?

思路如下:

1.hibernate提供了一个叫SchemaExport的类来专门生成DDL,这个类的构造函数要一个Configuration对象来初始化。只要拿到生成SessionFactory的Configuration对象就行了。

2.在spring中我用的是AnnotationSessionFactoryBean来创建SessionFactory,这个类继承于LocalSessionFactoryBean,利用它的getConfiguration方法就可以拿到Configuration对象。

?

下面是实现:

Spring的配置文件:

?

用于将DDL打出到控制台的代码:

ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml");// 因为是FeactoryBean,所以要用"&sessionFactory"来获得AnnotationSessionFactoryBean asfb = (AnnotationSessionFactoryBean) context.getBean("&sessionFactory");SchemaExport se = new SchemaExport(asfb.getConfiguration());se.create(true, false);

?

热点排行