没有明白登陆成功之后为什么会跳转到Index页面?
来源:11-5 -Spring Security 实战-前台编码
Yuuki_L
2018-04-19
不是很懂。
写回答
1回答
-
老卫
2018-04-20
实际上 Controller 可以控制你要跳转的任何页面。
@GetMapping("/") public String root() { return "redirect:/index"; } @GetMapping("/index") public String index() { return "index"; }
登录成功,默认是返回到了根路径 /,而这个 / 又最终重定向了到 /index 路径,而 /index 路径 最终返回的就是 index 页面。
这个都是 Spring MVC 的内容。望采纳答案。10
基于Spring Boot技术栈博客系统企业级前后端实战
毕设 Elasticsearch搜索+Thymeleaf模板+JPA+Security+BootStrap
1296 学习 · 738 问题
相似问题