Ensure that Jersey's filter has a servlet at the end of its chain

See gh-25449
This commit is contained in:
Andy Wilkinson 2021-02-26 15:42:13 +00:00
parent cb600f1c0b
commit 12d3b15244
3 changed files with 3 additions and 4 deletions

View File

@ -43,8 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Madhura Bhave
*/
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
properties = { "management.server.port=0", "debug=true" })
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = "management.server.port=0")
@Import(ResourceConfigConfiguration.class)
class AbstractJerseyManagementPortTests {

View File

@ -23,7 +23,7 @@ import org.springframework.test.context.TestPropertySource;
*
* @author Andy Wilkinson
*/
@TestPropertySource(properties = "spring.jersey.type=filter")
@TestPropertySource(properties = { "spring.jersey.type=filter", "server.servlet.register-default-servlet=true" })
class JerseyFilterApplicationTests extends AbstractJerseyApplicationTests {
}

View File

@ -24,7 +24,7 @@ import org.springframework.test.context.TestPropertySource;
*
* @author Andy Wilkinson
*/
@TestPropertySource(properties = "spring.jersey.type=filter")
@TestPropertySource(properties = { "spring.jersey.type=filter", "server.servlet.register-default-servlet=true" })
public class JerseyFilterManagementPortTests extends AbstractJerseyManagementPortTests {
}