Package org.apache.tomcat.util.compat
Class Jre21Compat
java.lang.Object
org.apache.tomcat.util.compat.JreCompat
org.apache.tomcat.util.compat.Jre19Compat
org.apache.tomcat.util.compat.Jre21Compat
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addBootModulePath
(Deque<URL> classPathUrlsToProcess) Obtains the URLs for all the JARs on the module path when the JVM starts and adds them to the provided Deque.boolean
canAccess
(Object base, AccessibleObject accessibleObject) Is the accessibleObject accessible (as a result of appropriate module exports) on the provided instance?Create a thread builder for virtual threads using the given name to name the threads.void
Disables caching for JAR URL connections.getApplicationProtocol
(SSLEngine sslEngine) Get the application protocol that has been negotiated for connection associated with the given SSLEngine.getModuleName
(Class<?> type) What is the module of the given class?static boolean
boolean
isExported
(Class<?> type) Is the given class in an exported package?boolean
Test if the provided exception is an instance of java.lang.reflect.InaccessibleObjectException.boolean
jarFileIsMultiRelease
(JarFile jarFile) Is this JarFile a multi-release JAR file.Creates a new JarFile instance.int
void
setApplicationProtocols
(SSLParameters sslParameters, String[] protocols) Set the application protocols the server will accept for ALPNvoid
setUseServerCipherSuitesOrder
(SSLParameters sslParameters, boolean useCipherSuitesOrder) void
threadBuilderStart
(Object threadBuilder, Runnable command) Create a thread with the given thread builder and use it to execute the given runnable.Methods inherited from class org.apache.tomcat.util.compat.Jre19Compat
getExecutor
Methods inherited from class org.apache.tomcat.util.compat.JreCompat
getInstance, isJre11Available, isJre16Available, isJre19Available, isJre21Available, isJre8Available, isJre9Available, jarFileNewInstance
-
Field Details
-
setApplicationProtocolsMethod
-
getApplicationProtocolMethod
-
-
Constructor Details
-
Jre21Compat
public Jre21Compat()
-
-
Method Details
-
createVirtualThreadBuilder
Description copied from class:JreCompat
Create a thread builder for virtual threads using the given name to name the threads.- Overrides:
createVirtualThreadBuilder
in classJreCompat
- Parameters:
name
- The base name for the threads- Returns:
- The thread buidler for virtual threads
-
threadBuilderStart
Description copied from class:JreCompat
Create a thread with the given thread builder and use it to execute the given runnable.- Overrides:
threadBuilderStart
in classJreCompat
- Parameters:
threadBuilder
- The thread builder to use to create a threadcommand
- The command to run
-
isInstanceOfInaccessibleObjectException
Description copied from class:JreCompat
Test if the provided exception is an instance of java.lang.reflect.InaccessibleObjectException.- Overrides:
isInstanceOfInaccessibleObjectException
in classJreCompat
- Parameters:
t
- The exception to test- Returns:
true
if the exception is an instance of InaccessibleObjectException, otherwisefalse
-
disableCachingForJarUrlConnections
Description copied from class:JreCompat
Disables caching for JAR URL connections. For Java 8 and earlier, this also disables caching for ALL URL connections.- Overrides:
disableCachingForJarUrlConnections
in classJreCompat
- Throws:
IOException
- If a dummy JAR URLConnection can not be created
-
addBootModulePath
Description copied from class:JreCompat
Obtains the URLs for all the JARs on the module path when the JVM starts and adds them to the provided Deque.- Overrides:
addBootModulePath
in classJreCompat
- Parameters:
classPathUrlsToProcess
- The Deque to which the modules should be added
-
jarFileNewInstance
Description copied from class:JreCompat
Creates a new JarFile instance. When running on Java 9 and later, the JarFile will be multi-release JAR aware.- Overrides:
jarFileNewInstance
in classJreCompat
- Parameters:
f
- The JAR file to open- Returns:
- A JarFile instance based on the provided file
- Throws:
IOException
- If an I/O error occurs creating the JarFile instance
-
jarFileIsMultiRelease
Description copied from class:JreCompat
Is this JarFile a multi-release JAR file.- Overrides:
jarFileIsMultiRelease
in classJreCompat
- Parameters:
jarFile
- The JarFile to test- Returns:
true
If it is a multi-release JAR file and is configured to behave as such.
-
jarFileRuntimeMajorVersion
public int jarFileRuntimeMajorVersion() -
canAccess
Description copied from class:JreCompat
Is the accessibleObject accessible (as a result of appropriate module exports) on the provided instance? -
isExported
Description copied from class:JreCompat
Is the given class in an exported package?- Overrides:
isExported
in classJreCompat
- Parameters:
type
- The class to test- Returns:
- Always
true
for Java 8.true
if the enclosing package is exported for Java 9+
-
getModuleName
Description copied from class:JreCompat
What is the module of the given class?- Overrides:
getModuleName
in classJreCompat
- Parameters:
type
- The class to test- Returns:
- Always
true
for Java 8.true
if the enclosing package is exported for Java 9+
-
setUseServerCipherSuitesOrder
public void setUseServerCipherSuitesOrder(SSLParameters sslParameters, boolean useCipherSuitesOrder) - Overrides:
setUseServerCipherSuitesOrder
in classJreCompat
-
getDomainLoadStoreParameter
- Overrides:
getDomainLoadStoreParameter
in classJreCompat
-
setApplicationProtocols
Description copied from class:JreCompat
Set the application protocols the server will accept for ALPN- Overrides:
setApplicationProtocols
in classJreCompat
- Parameters:
sslParameters
- The SSL parameters for a connectionprotocols
- The application protocols to be allowed for that connection
-
getApplicationProtocol
Description copied from class:JreCompat
Get the application protocol that has been negotiated for connection associated with the given SSLEngine.- Overrides:
getApplicationProtocol
in classJreCompat
- Parameters:
sslEngine
- The SSLEngine for which to obtain the negotiated protocol- Returns:
- The name of the negotiated protocol
-
isAlpnSupported
public static boolean isAlpnSupported()
-