晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

301跳转

Posted on 2023-07-21 16:52  shenyixin  阅读(3)  评论(0编辑  收藏  举报
@GetMapping("getA")
public String getA(){
    return "A";
}

@GetMapping(
"getBToA") public ModelAndView getBToA(){ RedirectView redirectView=new RedirectView("/getA"); redirectView.setStatusCode(HttpStatus.MOVED_PERMANENTLY); ModelAndView view=new ModelAndView(); view.setView(redirectView); return view; }