destroy-method 方法能防止热重部署和重启异常。

错误代码不兼容

  1. xmlns="http://www.springframework.org/schema/beans"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation=
  4. "http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans.xsd"
  6. >
  7. <import resource="classpath:org/springframework/jdbc/support/sql-error-codes.xml"/>
  8. <bean id = "H2" class="org.springframework.jdbc.support.SQLErrorCodes">
  9. <property name="badSqlGrammarCodes">
  10. <value>
  11. </value>
  12. <property name="duplicateKeyCodes">
  13. <value>23001,23505</value>
  14. </property>
  15. <property name="dataIntegrityViolationCodes">
  16. <value>22003,22012,22025,23000</value>
  17. </property>
  18. <property name="dataAccessResourceFailureCodes">
  19. <value>90046,90100,90117,90121,90126</value>
  20. </property>
  21. <property name="cannotAcquireLockCodes">
  22. <value>50200</value>
  23. </property>

标准的 H2 jar 可以下降为一捆在一个 OSGi 容器中。H2 实现了 OSGi Service Platform Release 4 Version 4.2 Enterprise Specification 中定义 JDBC 服务 。H2 数据源工厂服务注册以下属性:OSGI_JDBC_DRIVER_CLASS=org.h2.DriverOSGI_JDBC_DRIVER_NAME=H2OSGI_JDBC_DRIVER_VERSION属性反映了版本的驱动程序。

支持 JMX 管理, 但不是默认启用。为了启用 JMX,追加 ;JMX=TRUE 到数据库 URL ,当数据库打开时。各种工具支持 JMX,其中一个是 jconsole 工具。当打开 jconsole ,可以连接到打开的数据库的进程(使用服务器模式时,您需要连接到服务器进程)。然后去MBeans 部分。 在 org.h2 下每个数据库都会发现一个实体。这个实体对象名称的是数据库短名称,加上路径(每个冒号被替换为下划线字符)。

  • CacheSize:当前使用的缓存大小,单位KB
  • CacheSizeMax(读/写):最大缓存大小,单位KB
  • Exclusive:这个数据库是否在独占模式
  • FileReadCount:数据库打开后,文件读取操作的数量
  • FileSize:文件大小,单位KB
  • FileWriteCount:数据库打开后,文件写操作的数量
  • FileWriteCountTotal:数据库创建后,文件写操作的数量
  • LogMode(读/写):当前事务日志模式。有关详细信息,请参阅SET LOG
  • Mode:兼容性模式(REGULAR如果没有使用兼容模式)
  • MultiThreaded:如果启用了多线程就是 true
  • Mvcc:如果启用了Mvcc 就是 true
  • ReadOnly:如果数据库是只读的就是 true
  • TraceLevel (读/写):文件跟踪级别
  • Version:使用的数据库版本
  • listSettings:列出数据库设置

要启用 JMX,可能需要设置 JVM 系统属性com.sun.management.jmxremote