矗立挺立屹立的区别:Hibernate 的SessionFactory问题

来源:百度文库 编辑:神马品牌网 时间:2024/05/17 07:16:19
在Hibernate里,我一写
“SessionFactory sf = new Configuration().configure().buildSessionFactory();”
在Configuration处 就提示我“Cannot instantiate the type Configuration”
在configure处 就提示我 “The method configure() is undefined for the type Configuration”
这是什么原因呢?
谢谢

Configuration cfg = new Configuration();
cfg.configure(CONFIG_FILE_LOCATION);////////CONFIG_FILE_LOCATION
sf= cfg.buildSessionFactory();

没有指定类型。

请问怎么解决的
我也出现了同样的问题