Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
984b02dc
Commit
984b02dc
authored
Sep 26, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Undertow 1.4.3.Final
Closes gh-7019
parent
7dfa3a8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
pom.xml
spring-boot-dependencies/pom.xml
+1
-1
MimeMappings.java
...g/springframework/boot/context/embedded/MimeMappings.java
+7
-1
No files found.
spring-boot-dependencies/pom.xml
View file @
984b02dc
...
@@ -176,7 +176,7 @@
...
@@ -176,7 +176,7 @@
<thymeleaf-extras-data-attribute.version>
1.3
</thymeleaf-extras-data-attribute.version>
<thymeleaf-extras-data-attribute.version>
1.3
</thymeleaf-extras-data-attribute.version>
<thymeleaf-extras-java8time.version>
2.1.0.RELEASE
</thymeleaf-extras-java8time.version>
<thymeleaf-extras-java8time.version>
2.1.0.RELEASE
</thymeleaf-extras-java8time.version>
<tomcat.version>
8.5.5
</tomcat.version>
<tomcat.version>
8.5.5
</tomcat.version>
<undertow.version>
1.
3.25
.Final
</undertow.version>
<undertow.version>
1.
4.3
.Final
</undertow.version>
<velocity.version>
1.7
</velocity.version>
<velocity.version>
1.7
</velocity.version>
<velocity-tools.version>
2.0
</velocity-tools.version>
<velocity-tools.version>
2.0
</velocity-tools.version>
<webjars-hal-browser.version>
9f96c74
</webjars-hal-browser.version>
<webjars-hal-browser.version>
9f96c74
</webjars-hal-browser.version>
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/MimeMappings.java
View file @
984b02dc
/*
/*
* Copyright 2012-201
3
the original author or authors.
* Copyright 2012-201
6
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -67,6 +67,7 @@ public final class MimeMappings implements Iterable<Mapping> {
...
@@ -67,6 +67,7 @@ public final class MimeMappings implements Iterable<Mapping> {
mappings
.
add
(
"dtd"
,
"application/xml-dtd"
);
mappings
.
add
(
"dtd"
,
"application/xml-dtd"
);
mappings
.
add
(
"dv"
,
"video/x-dv"
);
mappings
.
add
(
"dv"
,
"video/x-dv"
);
mappings
.
add
(
"dvi"
,
"application/x-dvi"
);
mappings
.
add
(
"dvi"
,
"application/x-dvi"
);
mappings
.
add
(
"eot"
,
"application/vnd.ms-fontobject"
);
mappings
.
add
(
"eps"
,
"application/postscript"
);
mappings
.
add
(
"eps"
,
"application/postscript"
);
mappings
.
add
(
"etx"
,
"text/x-setext"
);
mappings
.
add
(
"etx"
,
"text/x-setext"
);
mappings
.
add
(
"exe"
,
"application/octet-stream"
);
mappings
.
add
(
"exe"
,
"application/octet-stream"
);
...
@@ -133,6 +134,7 @@ public final class MimeMappings implements Iterable<Mapping> {
...
@@ -133,6 +134,7 @@ public final class MimeMappings implements Iterable<Mapping> {
mappings
.
add
(
"ogv"
,
"video/ogg"
);
mappings
.
add
(
"ogv"
,
"video/ogg"
);
mappings
.
add
(
"oga"
,
"audio/ogg"
);
mappings
.
add
(
"oga"
,
"audio/ogg"
);
mappings
.
add
(
"ogg"
,
"audio/ogg"
);
mappings
.
add
(
"ogg"
,
"audio/ogg"
);
mappings
.
add
(
"otf"
,
"application/x-font-opentype"
);
mappings
.
add
(
"spx"
,
"audio/ogg"
);
mappings
.
add
(
"spx"
,
"audio/ogg"
);
mappings
.
add
(
"flac"
,
"audio/flac"
);
mappings
.
add
(
"flac"
,
"audio/flac"
);
mappings
.
add
(
"anx"
,
"application/annodex"
);
mappings
.
add
(
"anx"
,
"application/annodex"
);
...
@@ -164,6 +166,7 @@ public final class MimeMappings implements Iterable<Mapping> {
...
@@ -164,6 +166,7 @@ public final class MimeMappings implements Iterable<Mapping> {
mappings
.
add
(
"roff"
,
"text/troff"
);
mappings
.
add
(
"roff"
,
"text/troff"
);
mappings
.
add
(
"rtf"
,
"application/rtf"
);
mappings
.
add
(
"rtf"
,
"application/rtf"
);
mappings
.
add
(
"rtx"
,
"text/richtext"
);
mappings
.
add
(
"rtx"
,
"text/richtext"
);
mappings
.
add
(
"sfnt"
,
"application/font-sfnt"
);
mappings
.
add
(
"sh"
,
"application/x-sh"
);
mappings
.
add
(
"sh"
,
"application/x-sh"
);
mappings
.
add
(
"shar"
,
"application/x-shar"
);
mappings
.
add
(
"shar"
,
"application/x-shar"
);
mappings
.
add
(
"sit"
,
"application/x-stuffit"
);
mappings
.
add
(
"sit"
,
"application/x-stuffit"
);
...
@@ -184,6 +187,7 @@ public final class MimeMappings implements Iterable<Mapping> {
...
@@ -184,6 +187,7 @@ public final class MimeMappings implements Iterable<Mapping> {
mappings
.
add
(
"tiff"
,
"image/tiff"
);
mappings
.
add
(
"tiff"
,
"image/tiff"
);
mappings
.
add
(
"tr"
,
"text/troff"
);
mappings
.
add
(
"tr"
,
"text/troff"
);
mappings
.
add
(
"tsv"
,
"text/tab-separated-values"
);
mappings
.
add
(
"tsv"
,
"text/tab-separated-values"
);
mappings
.
add
(
"ttf"
,
"application/x-font-ttf"
);
mappings
.
add
(
"txt"
,
"text/plain"
);
mappings
.
add
(
"txt"
,
"text/plain"
);
mappings
.
add
(
"ulw"
,
"audio/basic"
);
mappings
.
add
(
"ulw"
,
"audio/basic"
);
mappings
.
add
(
"ustar"
,
"application/x-ustar"
);
mappings
.
add
(
"ustar"
,
"application/x-ustar"
);
...
@@ -206,6 +210,8 @@ public final class MimeMappings implements Iterable<Mapping> {
...
@@ -206,6 +210,8 @@ public final class MimeMappings implements Iterable<Mapping> {
mappings
.
add
(
"wmls"
,
"text/vnd.wap.wmlsc"
);
mappings
.
add
(
"wmls"
,
"text/vnd.wap.wmlsc"
);
mappings
.
add
(
"wmlscriptc"
,
"application/vnd.wap.wmlscriptc"
);
mappings
.
add
(
"wmlscriptc"
,
"application/vnd.wap.wmlscriptc"
);
mappings
.
add
(
"wmv"
,
"video/x-ms-wmv"
);
mappings
.
add
(
"wmv"
,
"video/x-ms-wmv"
);
mappings
.
add
(
"woff"
,
"application/font-woff"
);
mappings
.
add
(
"woff2"
,
"application/font-woff2"
);
mappings
.
add
(
"wrl"
,
"model/vrml"
);
mappings
.
add
(
"wrl"
,
"model/vrml"
);
mappings
.
add
(
"wspolicy"
,
"application/wspolicy+xml"
);
mappings
.
add
(
"wspolicy"
,
"application/wspolicy+xml"
);
mappings
.
add
(
"z"
,
"application/x-compress"
);
mappings
.
add
(
"z"
,
"application/x-compress"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment