我的 Glassfish Web 应用程序出现问题:我在 glassfish 应用程序上使用了持久性提供程序和 EJB facedes。Mysql 连接配置为 JDBC 资源。问题是当我在本地更新数据库时(使用 mysql promt 或其他客户端),glassfish 服务器仍然“看到”旧值。我意识到 glassfis 服务器和 Msyql DB 之间可能存在某种类型的缓存。我很确定我可以更改一些参数来解决这个问题,但是在搜索了很长一段时间后我似乎找不到它。谁能指导我到有问题的地区?mysql JDBC驱动?web.xml?连接池?
一些技术细节: 数据库:Mysql 5.1 服务器:Glassfish 3.1 服务器正在使用 root 用户名连接到数据库 我使用 EclipseLink 作为 glassfish 应用程序配置 (sun-resources.xml) 的持久性提供程序:
<jdbc-connection-pool allow-non-component-callers="false" associate-with-thread="false" connection-creation-retry-attempts="0" connection-creation-retry-interval-in-seconds="10" connection-leak-reclaim="false" connection-leak-timeout-in-seconds="0" connection-validation-method="auto-commit" datasource-classname="com.mysql.jdbc.jdbc2.optional.MysqlDataSource" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" is-isolation-level-guaranteed="true" lazy-connection-association="false" lazy-connection-enlistment="false" match-connections="false" max-connection-usage-count="0" max-pool-size="32" max-wait-time-in-millis="60000" name="mysql_drivingschool_rootPool" non-transactional-connections="false" pool-resize-quantity="2" res-type="javax.sql.DataSource" statement-timeout-in-seconds="-1" steady-pool-size="8" validate-atmost-once-period-in-seconds="0" wrap-jdbc-objects="false">
<property name="serverName" value="localhost"/>
<property name="portNumber" value="3306"/>
<property name="databaseName" value="drivingschool"/>
<property name="User" value="*****"/>
<property name="Password" value="****"/>
<property name="URL" value="jdbc:mysql://localhost:3306/******"/>
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
</jdbc-connection-pool>