Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0453eaba
提交
0453eaba
authored
14 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation (Spring workaround).
上级
7f5f2067
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
41 行增加
和
0 行删除
+41
-0
tutorial.html
h2/src/docsrc/html/tutorial.html
+41
-0
没有找到文件。
h2/src/docsrc/html/tutorial.html
浏览文件 @
0453eaba
...
...
@@ -1250,6 +1250,7 @@ Please note that changing the time zone after the H2 driver is loaded is not sup
</p>
<h2
id=
"spring"
>
Using Spring
</h2>
<h3>
Using the TCP Server
</h3>
<p>
Use the following configuration to start and stop the H2 TCP server using the Spring Framework:
</p>
...
...
@@ -1266,6 +1267,46 @@ Use the following configuration to start and stop the H2 TCP server using the Sp
The
<code>
destroy-method
</code>
will help prevent exceptions on hot-redeployment or when restarting the server.
</p>
<h3>
Error Code Incompatibility
</h3>
<p>
There is an incompatibility with the Spring JdbcTemplate and H2 version 1.3.154 and newer,
because of a change in the error code. This will cause the JdbcTemplate to not detect
a duplicate key condition, and so a
<code>
DataIntegrityViolationException
</code>
is thrown instead of
<code>
DuplicateKeyException
</code>
.
See also
<a
href=
"https://jira.springsource.org/browse/SPR-8235"
>
the issue SPR-8235
</a>
.
The workaround is to add the following XML file to the root of the classpath:
</p>
<pre>
<
beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"
>
<
import resource="classpath:org/springframework/jdbc/support/sql-error-codes.xml"/
>
<
bean id="H2" class="org.springframework.jdbc.support.SQLErrorCodes"
>
<
property name="badSqlGrammarCodes"
>
<
value
>
42000,42001,42101,42102,42111,42112,42121,42122,42132
<
/value
>
<
/property
>
<
property name="duplicateKeyCodes"
>
<
value
>
23001,23505
<
/value
>
<
/property
>
<
property name="dataIntegrityViolationCodes"
>
<
value
>
22003,22012,22025,23000
<
/value
>
<
/property
>
<
property name="dataAccessResourceFailureCodes"
>
<
value
>
90046,90100,90117,90121,90126
<
/value
>
<
/property
>
<
property name="cannotAcquireLockCodes"
>
<
value
>
50200
<
/value
>
<
/property
>
<
/bean
>
<
/beans
>
</pre>
<h2
id=
"jmx"
>
Java Management Extension (JMX)
</h2>
<p>
Management over JMX is supported, but not enabled by default.
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论