Fix NativeJdbcExtractors documentation
The documentation mentions various NativeJdbcExtractors that no longer exist. To be specific CommonsDbcpNativeJdbcExtractor and XAPoolNativeJdbcExtractor no longer exist. This commit includes the following changes: * remove CommonsDbcpNativeJdbcExtractor references from Asciidoctor * remove CommonsDbcpNativeJdbcExtractor references from Javadoc * remove XAPoolNativeJdbcExtractor references from Asciidoctor Issue: SPR-14810 Closes gh-1205
This commit is contained in:
committed by
Stephane Nicoll
parent
33bf439a74
commit
f7c79295f3
@@ -42,9 +42,8 @@ package org.springframework.jdbc.support.nativejdbc;
|
||||
* <li>Use a SimpleNativeJdbcExtractor with all "nativeConnectionNecessaryForXxx"
|
||||
* flags set to "true" for C3P0 (all JDBC Statement objects are wrapped,
|
||||
* but none of the wrappers allow for unwrapping).
|
||||
* <li>Use a CommonsDbcpNativeJdbcExtractor for Apache Commons DBCP or a
|
||||
* JBossNativeJdbcExtractor for JBoss (all JDBC Statement objects are wrapped,
|
||||
* but all of them can be extracted by casting to implementation classes).
|
||||
* <li>Use a JBossNativeJdbcExtractor for JBoss (all JDBC Statement objects are
|
||||
* wrapped, but all of them can be extracted by casting to implementation classes).
|
||||
* </ul>
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
|
||||
@@ -3237,11 +3237,9 @@ environment:
|
||||
|
||||
* SimpleNativeJdbcExtractor
|
||||
* C3P0NativeJdbcExtractor
|
||||
* CommonsDbcpNativeJdbcExtractor
|
||||
* JBossNativeJdbcExtractor
|
||||
* WebLogicNativeJdbcExtractor
|
||||
* WebSphereNativeJdbcExtractor
|
||||
* XAPoolNativeJdbcExtractor
|
||||
|
||||
Usually the `SimpleNativeJdbcExtractor` is sufficient for unwrapping a `Connection`
|
||||
object in most environments. See the javadocs for more details.
|
||||
|
||||
Reference in New Issue
Block a user