Skip to content

Commit c1d6e5e

Browse files
committed
Upgrade to Tomcat 7.0.55
Closes #1405
1 parent 601794c commit c1d6e5e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
<thymeleaf.version>2.1.3.RELEASE</thymeleaf.version>
117117
<thymeleaf-extras-springsecurity3.version>2.1.1.RELEASE</thymeleaf-extras-springsecurity3.version>
118118
<thymeleaf-layout-dialect.version>1.2.5</thymeleaf-layout-dialect.version>
119-
<tomcat.version>7.0.54</tomcat.version>
119+
<tomcat.version>7.0.55</tomcat.version>
120120
<velocity.version>1.7</velocity.version>
121121
<velocity-tools.version>2.0</velocity-tools.version>
122122
<wsdl4j.version>1.6.3</wsdl4j.version>

spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatEmbeddedContext.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ class TomcatEmbeddedContext extends StandardContext {
3434
private ServletContextInitializerLifecycleListener starter;
3535

3636
@Override
37-
public void loadOnStartup(Container[] children) {
37+
public boolean loadOnStartup(Container[] children) {
38+
return true;
3839
}
3940

4041
public void deferredLoadOnStartup() {

0 commit comments

Comments
 (0)