Package org.apache.coyote
Class CompressionConfig
- java.lang.Object
-
- org.apache.coyote.CompressionConfig
-
public class CompressionConfig extends java.lang.ObjectConfiguration for HTTP response compression settings.
-
-
Constructor Summary
Constructors Constructor Description CompressionConfig()Creates a new compression configuration with default settings.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCompressibleMimeType()Returns the comma-separated list of MIME types eligible for compression.java.lang.String[]getCompressibleMimeTypes()Returns the array of MIME types eligible for compression.java.lang.StringgetCompression()Return compression level.intgetCompressionLevel()Returns the internal numeric compression level.intgetCompressionMinSize()Returns the minimum response size in bytes required before compression is applied.java.lang.StringgetNoCompressionEncodings()Returns the list of content encodings that indicate already-compressed content.java.lang.StringgetNoCompressionUserAgents()Obtain the String form of the regular expression that defines the user agents to not use gzip with.java.util.regex.PatterngetNoCompressionUserAgentsPattern()Returns the compiled regular expression pattern for user agents that should not receive compressed responses.voidsetCompressibleMimeType(java.lang.String valueS)Sets the comma-separated list of MIME types eligible for compression.voidsetCompression(java.lang.String compression)Set compression level.voidsetCompressionMinSize(int compressionMinSize)Set Minimum size to trigger compression.voidsetNoCompressionEncodings(java.lang.String encodings)Set the list of content encodings that indicate already-compressed content.voidsetNoCompressionUserAgents(java.lang.String noCompressionUserAgents)Set no compression user agent pattern.booleanuseCompression(Request request, Response response)Determines if compression should be enabled for the given response and if it is, sets any necessary headers to mark it as such.
-
-
-
Method Detail
-
getNoCompressionEncodings
public java.lang.String getNoCompressionEncodings()
Returns the list of content encodings that indicate already-compressed content.- Returns:
- comma-separated list of encoding names
-
setNoCompressionEncodings
public void setNoCompressionEncodings(java.lang.String encodings)
Set the list of content encodings that indicate already-compressed content. When content is already encoded with one of these encodings, compression will not be applied to prevent double compression.- Parameters:
encodings- Comma-separated list of encoding names (e.g., "gzip,br.dflate")
-
setCompression
public void setCompression(java.lang.String compression)
Set compression level.- Parameters:
compression- One ofon,force,offor the minimum compression size in bytes which implieson
-
getCompression
public java.lang.String getCompression()
Return compression level.- Returns:
- The current compression level in string form (off/on/force)
-
getCompressionLevel
public int getCompressionLevel()
Returns the internal numeric compression level.- Returns:
- 0 for off, 1 for on, 2 for force
-
getNoCompressionUserAgents
public java.lang.String getNoCompressionUserAgents()
Obtain the String form of the regular expression that defines the user agents to not use gzip with.- Returns:
- The regular expression as a String
-
getNoCompressionUserAgentsPattern
public java.util.regex.Pattern getNoCompressionUserAgentsPattern()
Returns the compiled regular expression pattern for user agents that should not receive compressed responses.- Returns:
- the compiled pattern, or
nullif not configured
-
setNoCompressionUserAgents
public void setNoCompressionUserAgents(java.lang.String noCompressionUserAgents)
Set no compression user agent pattern. Regular expression as supported byPattern. e.g.:gorilla|desesplorer|tigrus.- Parameters:
noCompressionUserAgents- The regular expression for user agent strings for which compression should not be applied
-
getCompressibleMimeType
public java.lang.String getCompressibleMimeType()
Returns the comma-separated list of MIME types eligible for compression.- Returns:
- comma-separated MIME type string
-
setCompressibleMimeType
public void setCompressibleMimeType(java.lang.String valueS)
Sets the comma-separated list of MIME types eligible for compression.- Parameters:
valueS- comma-separated MIME type string
-
getCompressibleMimeTypes
public java.lang.String[] getCompressibleMimeTypes()
Returns the array of MIME types eligible for compression.- Returns:
- array of MIME type strings
-
getCompressionMinSize
public int getCompressionMinSize()
Returns the minimum response size in bytes required before compression is applied.- Returns:
- the minimum size in bytes
-
setCompressionMinSize
public void setCompressionMinSize(int compressionMinSize)
Set Minimum size to trigger compression.- Parameters:
compressionMinSize- The minimum content length required for compression in bytes
-
useCompression
public boolean useCompression(Request request, Response response)
Determines if compression should be enabled for the given response and if it is, sets any necessary headers to mark it as such.- Parameters:
request- The request that triggered the responseresponse- The response to consider compressing- Returns:
trueif compression was enabled for the given response, otherwisefalse
-
-