【发布时间】:2020-12-21 10:26:13
【问题描述】:
在我的 Spring Boot 项目中,我想做一个从 http://localhost:8080 到 http://localhost:8080/birdspotting 的重定向。这是 Home 控制器的代码:
@RestController
public class HomeController {
@GetMapping("/")
public String showHomePage() {
return "redirect:/birdspotting";
}
}
去http://localhost:8080的结果是redirect:/birdspotting的打印
【问题讨论】:
-
使用
@Controller而不是@RestController。
标签: spring-boot redirect controller