Home >Database >Mysql Tutorial >Hibernate不能实时获取MySQL数据库的更新

Hibernate不能实时获取MySQL数据库的更新

WBOY
WBOYOriginal
2016-06-07 16:45:471073browse

最近项目中使用到了Hibernate,但每次数据库记录有更新后,用hibernate无法查找到更新后的数据。网上查找了许多教程,最终发现通

最近项目中使用到了Hibernate,但每次数据库记录有更新后,用hibernate无法查找到更新后的数据。网上查找了许多教程,最终发现通过更改hibernate的默认连接池可以解决。通过使用c3p0连接池,替换掉hibernate的默认连接池后,就可以查找到MySQL更新后的数据了。

具体修改方法如下:

在hibernate.cfg.xml配置文件中,增加以下内容:

 org.hibernate.connection.C3P0ConnectionProvider
                20 
                5 
                100
                120
                1
                true
                18000
                25000

附上c3p0的jar包,,c3p0库,替换掉hibernate默认连接池后,可以实时访问到MySQL数据库的更新,下载地址:

------------------------------------------分割线------------------------------------------

免费下载地址在

用户名与密码都是

具体下载目录在 /2014年资料/11月/13日/Hibernate不能实时获取MySQL数据库的更新

下载方法见

------------------------------------------分割线------------------------------------------

Hibernate整体理解

Hibernate 的详细介绍:请点这里
Hibernate 的下载地址:请点这里

本文永久更新链接地址:

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn