Ensure MockMvcTesterIntegrationTests runs in AOT mode

See gh-29122
This commit is contained in:
Sam Brannen
2024-05-29 13:32:22 +02:00
parent a0c9a204b8
commit cade3c7b0e

View File

@@ -503,7 +503,7 @@ public class MockMvcTesterIntegrationTests {
@Controller
@SessionAttributes("locale")
private static class SessionController {
static class SessionController {
@ModelAttribute
void populate(Model model) {
@@ -517,7 +517,7 @@ public class MockMvcTesterIntegrationTests {
}
@Controller
private static class ErrorController {
static class ErrorController {
@GetMapping("/error/1")
public String one() {