org.hibernate.dialect.MySQLDialect这句话明明就写在了配置文件里面,可老是没有写错误如下:Exceptioninthread"main"org.hibernate.HibernateException:HibernateDialectmustbeexplicitlysetname改成"hibernate.dialect"也不" />

No CurrentSessionContext configured!" 异常解

系统 1651 0

hibernate 老说没有配方言

<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
这句话明明就写在了配置文件里面,可老是没有写
错误如下:
Exception in thread "main" org.hibernate.HibernateException: Hibernate Dialect must be explicitly set

name改成"hibernate.dialect"也不行

Hibernate-Version: 3.1.1
mysql -Verison: 4.0.16


用这种方法正确
static {

try {
configuration = new Configuration();

sessionFactory = configuration.configure().buildSessionFactory();
} catch (Throwable ex) {

 

throw new ExceptionInInitializerError(ex);
}
}

这种方式会出现异常
// static {
// try {
// // Create a configuration based on the properties file we've put
// Configuration config = new Configuration();
// config.addClass(Customer.class).addClass(Order.class);
// // Get the session factory we can use for persistence
// sessionFactory = config.buildSessionFactory();
// } catch (Exception e) {
// e.printStackTrace();
// }
// }

第二种方式是针对使用properties文件配置hiernate的写法,使用hibernate.cfg.xml应使用第一种调用方式

或者在hibernate.cfg.xml中加入:

 

< property  name ="current_session_context_class" > thread </ property >

 



No CurrentSessionContext configured!" 异常解决方案


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论