Browse Source
This commit ensures that the original request URI is displayed in `NoResourceFoundException` error messages when logged. Without this change, it can be confusing to see only the attempted resource path. There are cases where the original request was not meant for resource handling and we want to understand why this wasn't processed by another handler. The Problem Detail attribute has not been changed as the "instance" attribute already displays the request path. Closes gh-34553pull/35247/head
8 changed files with 98 additions and 10 deletions
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
/* |
||||
* Copyright 2002-present the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.web.reactive.resource; |
||||
|
||||
import java.net.URI; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link NoResourceFoundException}. |
||||
* @author Brian Clozel |
||||
*/ |
||||
class NoResourceFoundExceptionTests { |
||||
|
||||
@Test |
||||
void messageShouldContainRequestUriAndResourcePath() { |
||||
var noResourceFoundException = new NoResourceFoundException(URI.create("/context/resource"), "/resource"); |
||||
assertThat(noResourceFoundException.getMessage()).isEqualTo("404 NOT_FOUND \"No static resource /resource for request '/context/resource'.\""); |
||||
} |
||||
|
||||
@Test |
||||
void detailShouldContainResourcePath() { |
||||
var noResourceFoundException = new NoResourceFoundException(URI.create("/context/resource"), "/resource"); |
||||
assertThat(noResourceFoundException.getBody().getDetail()).isEqualTo("No static resource /resource."); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
/* |
||||
* Copyright 2002-present the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.web.servlet.resource; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.http.HttpMethod; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link NoResourceFoundException}. |
||||
* @author Brian Clozel |
||||
*/ |
||||
class NoResourceFoundExceptionTests { |
||||
|
||||
@Test |
||||
void messageShouldContainRequestUriAndResourcePath() { |
||||
var noResourceFoundException = new NoResourceFoundException(HttpMethod.GET, "/context/resource", "/resource"); |
||||
assertThat(noResourceFoundException.getMessage()).isEqualTo("No static resource /resource for request '/context/resource'."); |
||||
} |
||||
|
||||
@Test |
||||
void detailShouldContainResourcePath() { |
||||
var noResourceFoundException = new NoResourceFoundException(HttpMethod.GET, "/context/resource", "/resource"); |
||||
assertThat(noResourceFoundException.getBody().getDetail()).isEqualTo("No static resource /resource."); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue