我正在使用 GlassFish 3.1.1 的 EclipseLink 2.3 对 MySQL 5.6.12 和 MySQL Connector/J 5.1.25 进行简单的 JPA 测试。它有效,但在一个长时间运行的过程中:大约 4-5 分钟。将属性 'eclipselink.target-database' 设置为 persistence.xml 后,现在大约需要 2 分钟。
在这里您可以看到延迟的日志片段:
Running org.consel.jc.jpa.test.JpaTest
...
[EL Config]: 2013-07-12 09:51:27.986--ServerSession(8831815)--Connection(11317592)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
platform=>MySQLPlatform
user name=> "root"
datasource URL=> "jdbc:mysql://localhost:3306/sm"
))
[EL Config]: 2013-07-12 09:53:33.157--ServerSession(8831815)--Connection(15177785)--Thread(Thread[main,5,main])--Connected: jdbc:mysql://localhost:3306/sm
User: root@localhost
Database: MySQL Version: 5.6.12
Driver: MySQL Connector Java Version: mysql-connector-java-5.1.25 ( Revision: ${bzr.revision-id} )
[EL Finest]: 2013-07-12 09:53:33.167--ServerSession(8831815)--Connection(15177785)--Thread(Thread[main,5,main])--Connection acquired from connection pool [default].
[EL Finest]: 2013-07-12 09:53:33.167--ServerSession(8831815)--Connection(15177785)--Thread(Thread[main,5,main])--Connection released to connection pool [default].
...
此外,我使用transaction-type="RESOURCE_LOCAL"通过 EclipseLink 管理事务。如何调查搜索原因?谢谢