添加 remarksReporting 连接属性设置(可获取到表的remark备注)

This commit is contained in:
thinkgem
2020-03-21 09:40:20 +08:00
parent 2ae22bd7d3
commit f79b18a4b9
3 changed files with 6 additions and 3 deletions

View File

@@ -49,6 +49,9 @@ jdbc:
# Oracle 下会自动开启 PSCache并指定每个连接上 PSCache 大小。若不指定,则与 maxActive 相同4.1.5+
maxPoolPreparedStatementPerConnectionSize: ~
# 设置连接属性,可获取到表的 remark (备注)
remarksReporting: false
# JTA 分布式事务建议启用多数据源的时候开启v4.0.4+
jta:

View File

@@ -340,7 +340,6 @@
<profiles>
<!-- 生成文档 -->
<profile>
<id>javadoc</id>
<build>
@@ -353,7 +352,6 @@
</build>
</profile>
<!-- 打包项目 -->
<profile>
<id>package</id>
<build>
@@ -366,7 +364,6 @@
</build>
</profile>
<!-- 部署项目 -->
<profile>
<id>deploy</id>
<build>

View File

@@ -110,6 +110,9 @@ jdbc:
#
# # Oracle 下会自动开启 PSCache并指定每个连接上 PSCache 大小。若不指定,则与 maxActive 相同4.1.5+
# maxPoolPreparedStatementPerConnectionSize: ~
#
# # 设置连接属性,可获取到表的 remark (备注)
# remarksReporting: false
# # 多数据源名称列表,多个用逗号隔开,使用方法:@MyBatisDao(dataSourceName="ds2")
# dataSourceNames: ds2