From 8cf14579a6d3a18d0070be04cf35c42f48398f57 Mon Sep 17 00:00:00 2001 From: David Mueller Date: Thu, 7 Sep 2023 13:23:15 -0400 Subject: [PATCH 1/2] Update relational-database-connections-JDBC.adoc --- modules/ROOT/pages/relational-database-connections-JDBC.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/relational-database-connections-JDBC.adoc b/modules/ROOT/pages/relational-database-connections-JDBC.adoc index 5273f7ced6..8b71d88e27 100644 --- a/modules/ROOT/pages/relational-database-connections-JDBC.adoc +++ b/modules/ROOT/pages/relational-database-connections-JDBC.adoc @@ -16,7 +16,7 @@ Java applications connect to and interact with relational databases through the Java Database Connectivity (JDBC) API. You can configure a data source and a JDBC driver so an application that is running on your Open Liberty server can connect with a relational database. -Applications communicate with relational databases to retrieve different kinds of information, such as flight schedules, product inventories, and customer purchase histories. The https://docs.oracle.com/javase/tutorial/jdbc/overview/index.html[JDBC API] provides an adapter layer between applications and relational databases by providing details about a database to an application in a standardized way. In Open Liberty, interactions with the JDBC API are configured by the feature:jdbc[Java Database Connectivity] feature. +Applications communicate with relational databases to retrieve different kinds of information, such as flight schedules, product inventories, and customer purchase histories. The https://docs.oracle.com/javase/tutorial/jdbc/overview/index.html[JDBC API] provides an adapter layer between applications and relational databases by providing details about a database to an application in a standardized way. In Open Liberty, interactions with the JDBC API are configured by the feature:jdbc[display=Java Database Connectivity] feature. == JDBC driver library configuration @@ -283,7 +283,7 @@ The following example shows a sample data source configuration for an Oracle dat https://docs.oracle.com/cd/E11882_01/java.112/e12265/intro.htm#BABHFGCA[Oracle Universal Connection Pool] (UCP) is a stand-alone JDBC connection pool. When you use Oracle UCP with Open Liberty, you are using the Oracle UCP connection pool instead of the Open Liberty built-in connection pooling functions. Some of the https://www.oracle.com/database/technologies/high-availability.html[Oracle high availability database] functions require the use of Oracle UCP. Oracle UCP might require some properties, such as `user` and `password`, to be set in the `properties.oracle.ucp` element. -Because the Open Liberty connection pool is unavailable, some of the Open Liberty data source and connection manager configuration values are ignored. For most of those data source and connection manager properties, Oracle UCP provides equivalent functions. For more information, see the xref:reference:config/dataSource.adoc#dataSource/properties.oracle.ucp[properties.oracle.ucp element documentation]. +Because the Open Liberty connection pool is unavailable, some of the Open Liberty data source and connection manager configuration values are ignored. For most of those data source and connection manager properties, Oracle UCP provides equivalent functions. For more information, see the xref:reference:config/dataSource.adoc#dataSource/properties.oracle.ucp[properties.oracle.ucp] element documentation. Get the https://mvnrepository.com/artifact/com.oracle.database.jdbc/ucp[Oracle UCP JDBC driver from Maven Central]. The following example shows a sample data source configuration for Oracle UCP: From ceb789671c407924a8c97a9a864b700674767167 Mon Sep 17 00:00:00 2001 From: David Mueller Date: Thu, 7 Sep 2023 13:34:49 -0400 Subject: [PATCH 2/2] Update examples.adoc --- modules/reference/pages/feature/jwtSso/examples.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/reference/pages/feature/jwtSso/examples.adoc b/modules/reference/pages/feature/jwtSso/examples.adoc index 69922baf14..3d42ce7b37 100644 --- a/modules/reference/pages/feature/jwtSso/examples.adoc +++ b/modules/reference/pages/feature/jwtSso/examples.adoc @@ -31,6 +31,8 @@ In the following example, the JWT cookies are disabled by specifying the `disabl ---- +You can then use a mechanism other than JWT cookies for authentication. + === Configure JWT SSO authentication for a subset of requests You can configure an authentication filter to specify whether certain requests for protected resources are authenticated with JWT SSO.