You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyWebServer.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -156,7 +156,7 @@ public void start() throws WebServerException {
156
156
this.started = true;
157
157
JettyWebServer.logger
158
158
.info("Jetty started on port(s) " + getActualPortsDescription()
159
-
+ " with context path " + getContextPath());
159
+
+ " with context path '" + getContextPath() + "'");
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatWebServer.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ public void start() throws WebServerException {
195
195
this.started = true;
196
196
TomcatWebServer.logger
197
197
.info("Tomcat started on port(s): " + getPortsDescription(true)
198
-
+ " with context path " + getContextPath());
198
+
+ " with context path '" + getContextPath() + "'");
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowServletWebServer.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ public void start() throws WebServerException {
158
158
this.started = true;
159
159
UndertowServletWebServer.logger
160
160
.info("Undertow started on port(s) " + getPortsDescription()
161
-
+ " with context path " + this.contextPath);
161
+
+ " with context path '" + this.contextPath + "'");
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/servlet/server/AbstractServletWebServerFactoryTests.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -263,6 +263,15 @@ public void specificContextRoot() throws Exception {
0 commit comments