You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, the https://commons.apache.org/proper/commons-dbcp/[Apache Commons DBCP connection pool library] is provided with deegree webservices WAR file. In some cases you may consider another implementation as more appropriate to use. The following examples show how to use other connection pool provider. Keep in mind to add the mentioned libraries to the same classpath as the JDBC driver.
368
368
369
-
==== PostgreSQL JDBC
369
+
===== PostgreSQL JDBC
370
370
371
371
The PostgreSQL JDBC driver provides two DataSource implementations which support, among other things, the configuration for multiple hosts. Read further in the https://jdbc.postgresql.org/documentation/datasource/[PostgreSQL JDBC driver documentation].
372
372
This DataSource implementation requires the official PostgreSQL JDBC driver on the classpath.
@@ -389,7 +389,7 @@ Download the driver from: https://jdbc.postgresql.org/download/
389
389
</DataSourceConnectionProvider>
390
390
----
391
391
392
-
==== HikariCP
392
+
===== Hikari Connection Pool
393
393
394
394
The HikariCP project states that the implementation is a "zero-overhead" production ready JDBC connection pool and very lightweight.
395
395
@@ -411,7 +411,7 @@ Download the connection pool from: https://github.com/brettwooldridge/HikariCP
411
411
</DataSourceConnectionProvider>
412
412
----
413
413
414
-
===== c3p0
414
+
===== c3p0 Connection Pool
415
415
416
416
The c3p0 project states that the implementation is an easy-to-use library for making traditional JDBC drivers "enterprise-ready" by augmenting them with functionality defined by the JDBC 3 and 4 specs and the optional extensions to JDBC 2.
417
417
@@ -452,6 +452,8 @@ is called 'inspire', the database user is 'postgres' and password is
452
452
</JDBCConnection>
453
453
----
454
454
455
+
WARNING: When using this legacy configuration the connection pool size is hard coded to 5 connections as the minimal pool size and 25 connections as the maximum pool size.
456
+
455
457
The legacy connection config file format is defined by schema file
456
458
https://schemas.deegree.org/core/3.6/jdbc/jdbc.xsd. The root element is
457
459
_JDBCConnection_. The following table lists the available configuration options. When
@@ -465,6 +467,8 @@ specifying them, their order must be respected.
465
467
|Password |1..1 |String |DB password
466
468
|===
467
469
470
+
IMPORTANT: This configuration format is deprecated and will be removed in future versions. Switch to one of the described <<anchor-configuration-jdbc,JDBC connections>> using the `DataSourceConnectionProvider` instead.
471
+
468
472
=== Remote OWS connections
469
473
470
474
Remote OWS connections are typically configured with a capabilities
Copy file name to clipboardExpand all lines: deegree-documentation/src/main/asciidoc/webservices.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1240,7 +1240,7 @@ The implementation of the visibility inspector checks whether a requested layer
1240
1240
Of course, also non category layers can be configured here, but for most use cases category layers will be more useful.
1241
1241
If no _CategoryLayerIdentifier_ are configured, the VisibilityInspector is applied to all layers.
1242
1242
1243
-
Note: If a _CategoryLayerIdentifier_ is configured, the visibility inspector will just be executed if exactly this layer is requested. Still, as already stated above, the visibility inspector is applied to the requested layer plus all of its sublayers.
1243
+
NOTE: If a _CategoryLayerIdentifier_ is configured, the visibility inspector will just be executed if exactly this layer is requested. Still, as already stated above, the visibility inspector is applied to the requested layer plus all of its sublayers.
1244
1244
If just one or more sublayers of the configured _CategoryLayerIdentifier_ are requested, the visibility inspector is NOT applied.
1245
1245
This behaviour prevents that complex analyses and/or functions are executed during each GetMap request.
0 commit comments