Polish multiple RequestRejectedHandlers support

Issue gh-10603
This commit is contained in:
Josh Cummings
2022-01-14 16:45:58 -07:00
parent 4ea57f3e3f
commit 75f25bff82
4 changed files with 16 additions and 14 deletions

View File

@@ -16,8 +16,10 @@
package org.springframework.security.config.annotation.web.builders;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletResponse;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
@@ -42,8 +44,6 @@ import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.io.IOException;
import static org.assertj.core.api.Assertions.assertThat;
/**