Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

JWS-820 - Fail to load Tomcat8 datasource configuration #330

Merged
merged 1 commit into from
Oct 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 16 additions & 3 deletions modules/plugins/tomcat/src/main/resources/META-INF/rhq-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,8 @@
<c:simple-property
name="maxActive"
type="integer"
description="The maximum number of active connections that can be allocated from this pool at the same time, or negative for no limit. Default is 8." />
description="The maximum number of active connections that can be allocated from this pool at the same time, or negative for no limit. Default is 8."
required="false" />
<c:simple-property
name="maxIdle"
type="integer"
Expand All @@ -636,7 +637,18 @@
<c:simple-property
name="maxWait"
type="integer"
description="The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. Default is indefinitely." />
description="The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely. Default is indefinitely."
required="false" />
<c:simple-property
name="maxWaitMillis"
type="integer"
description="Introspected attribute maxWaitMillis"
required="false" />
<c:simple-property
name="maxTotal"
type="integer"
description="Introspected attribute maxTotal"
required="false" />
<c:simple-property
name="poolPreparedStatements"
type="boolean"
Expand All @@ -648,7 +660,8 @@
<c:simple-property
name="removeAbandoned"
type="boolean"
description="Flag to remove abandoned connections if they exceed the removeAbandonedTimout. If set to true a connection is considered abandoned and eligible for removal if it has been idle longer than the removeAbandonedTimeout. Setting this to true can recover db connections from poorly written applications which fail to close a connection. Default is false." />
description="Flag to remove abandoned connections if they exceed the removeAbandonedTimout. If set to true a connection is considered abandoned and eligible for removal if it has been idle longer than the removeAbandonedTimeout. Setting this to true can recover db connections from poorly written applications which fail to close a connection. Default is false."
required="false" />
<c:simple-property
name="removeAbandonedTimeout"
type="integer"
Expand Down