-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Cache miss for REQUEST dispatch to '/admin' error caused #31880
Comments
The error log is related to spring-projects/spring-security#14128. The 404 issue is completely independent. Is there a controller mapped at this endpoint? Can you share a minimal sample that demonstrates this? |
sure! Controller@Controller
@RequiredArgsConstructor(access = AccessLevel.PROTECTED)
public class ApplicantController {
private final ApplicantService applicantService;
@GetMapping("/admin")
public String moveAdminPage(Model model) {
model.addAttribute("applicants", applicantService.findAllApplicantInfo());
return "admin";
} |
thank you😃 |
This code snippet should work, there might be a problem somewhere else. Can you share a sample project? |
I'll leave a link to the git repository! https://github.com/20-Testers/reviewerRecruiter-Server |
404 error is expected, I'm not seeing any controller in the project. |
oh I'm really sorry.. i was implementing a feature in the feat/#1 branch, not the main branch. |
I can't reproduce the problem. Running with a the "local" profile and accessing |
To explain this problem in more detail, |
Sorry but I can't spend more time on this. We use this issue tracker for enhancement requests and bug reports. It seems you're describing the fact that the authentication session is not persisted between app restarts. There are projects dedicated to solving that, like Spring Session. For further questions, please use StackOverflow. |
Affects: Springboot 3.2.0
I am currently using Spring Security.
However, when accessing the admin page, the error log written below occurs and 404 Not Found error occurs for all pages.
May I know what's causing this?
Error Log
ScreenShot
SecurityConfig
The text was updated successfully, but these errors were encountered: